I have given below dataset
I would like to create a new calculated table using the above given table where we can categorise the city gender and an age group for summing up the "Numbers" Column.
Please help.
Thanks in Advance!
Solved! Go to Solution.
Add a new calcualted column like this.
Age Group =
SWITCH (
TRUE (),
Table[Age] < 12, "0-11",
Table[Age] < 16, "12-15",
Table[Age] < 25, "16-24",
Table[Age] < 31, "25-30",
Table[Age] < 36, "31-35",
Table[Age] < 41, "36-40",
"40+"
)
You would just need to adjust the ranges to match what you want to show in your report.
Hi @ashishoza12345,
Did the above suggestions help with your scenario? if that is the case, you can consider Kudo or accept the helpful suggestions to help others who faced similar requirements.
If these also don't help, please share more detailed information to help us clarify your scenario to test.
How to Get Your Question Answered Quickly
Regards,
Xiaoxin Sheng
Hi,
After creating the calculated column as suggested by @jdbuchanan71, create a matrix visual and drag City/Gender to the row labels and Age Group to the column labels. Write this measure
Total = sum(Data[Numbers])
Hope this helps.
Add a new calcualted column like this.
Age Group =
SWITCH (
TRUE (),
Table[Age] < 12, "0-11",
Table[Age] < 16, "12-15",
Table[Age] < 25, "16-24",
Table[Age] < 31, "25-30",
Table[Age] < 36, "31-35",
Table[Age] < 41, "36-40",
"40+"
)
You would just need to adjust the ranges to match what you want to show in your report.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
Put your data visualization and design skills to the test! This exciting challenge is happening now through May 31st!
At the monthly call, connect with other leaders and find out how community makes your experience even better.
User | Count |
---|---|
376 | |
100 | |
64 | |
55 | |
43 |
User | Count |
---|---|
369 | |
113 | |
77 | |
65 | |
53 |