Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Hello,
I would like to ask how to make age grouping in power bi. I have column age. I need make like 0-10, 11-20 etc.
Hi,
you could create a custom column in power query with a formula such as:
if [Age] >=0 and [Age]<= 10 then "1-10"
else if [Age] >=11 and [Age]<= 20 then "11-20"
else "21+"
If I answered your question, please mark my post as solution, Appreciate your Kudos 👍
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.