Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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:
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
26 | |
10 | |
10 | |
9 | |
6 |