Hello community,
I have a question about creating a crosstab report and wanted to get the community's thoughts before submitting a request ticket. First off, the data is structured in the following format:
Category Subcategory Item Value
January 1 Apple 100
January 1 Orange 50
January 2 Apple 300
January 2 Orange 75
February 1 Apple 95
February 1 Orange 60
...
The report needs to look like this:
January Sub 1 Sub 2
Apple 100 300
Orange 50 75
February Sub 1 Sub 2
Apple 95 ...
Orange 60 ...
...
The biggest restriction to this report is that the data is retrieved from a web service in this format, all at once. Each category to me looks like a crosstab of Subcategory, Item, and Value, such as:
[=Category?] [="Sub " + Fields.Subcategory]
[=Fields.Item] [=Avg(Fields.Value)]
Though, I'm unsure how to repeat this cross tab for each category using the same data. Assigning the corner [=Fields.Category] doesn't work (which makes sense but I'm not sure how to make it work. Any help would be greatly appreciated.
I have a question about creating a crosstab report and wanted to get the community's thoughts before submitting a request ticket. First off, the data is structured in the following format:
Category Subcategory Item Value
January 1 Apple 100
January 1 Orange 50
January 2 Apple 300
January 2 Orange 75
February 1 Apple 95
February 1 Orange 60
...
The report needs to look like this:
January Sub 1 Sub 2
Apple 100 300
Orange 50 75
February Sub 1 Sub 2
Apple 95 ...
Orange 60 ...
...
The biggest restriction to this report is that the data is retrieved from a web service in this format, all at once. Each category to me looks like a crosstab of Subcategory, Item, and Value, such as:
[=Category?] [="Sub " + Fields.Subcategory]
[=Fields.Item] [=Avg(Fields.Value)]
Though, I'm unsure how to repeat this cross tab for each category using the same data. Assigning the corner [=Fields.Category] doesn't work (which makes sense but I'm not sure how to make it work. Any help would be greatly appreciated.