Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I have a situation where I need to calculate data and save it in different table for reporting
Raw data
I want result in below format
Solved! Go to Solution.
@PBX_user , Create a new table using DAX go to modelling and create new table and use Summarize
SecondTable =
SUMMARIZE(
'FirstTable',
'FirstTable'[Month],
'FirstTable'[State],
"No of Tasks", COUNTROWS('FirstTable')
)
Proud to be a Super User! |
|
@PBX_user , Create a new table using DAX go to modelling and create new table and use Summarize
SecondTable =
SUMMARIZE(
'FirstTable',
'FirstTable'[Month],
'FirstTable'[State],
"No of Tasks", COUNTROWS('FirstTable')
)
Proud to be a Super User! |
|
Thank you bhanu_gautam that worked.
I have different set of data as well, how I can create a result set of this data set
raw data:
Result needed as below:
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
11 | |
9 | |
8 | |
8 | |
7 |
User | Count |
---|---|
15 | |
12 | |
11 | |
10 | |
9 |