Greetings,
I have a dimension called Notification Type with values: A, B, C etc.
I created the following variables to count my A, B, C etc.
vNotification A = Count ([ID]) Where ([Notification Type] = "A"))
vNotification B = Count ([ID]) Where ([Notification Type] = "B"))
ID | Name | Room | Date | Notification A | Notification B |
---|---|---|---|---|---|
000100 | John | A12 | 1/12/2015 | 1 | 0 |
000100 | John | A12 | 1/12/2015 | 0 | 1 |
When I dragged the variables, the count is correct, but displays as follows:
Following is how I would like the report to display.
ID | Name | Room | Date | Notification A | Notification B |
---|---|---|---|---|---|
000100 | John | A12 | 1/12/2015 | 1 | 1 |
Any suggestions?
TIA,
Regards,