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.
Dear's,
I have a data in the table as given below. for each month the type "x" will have a cumulative value as highlighted.
table
The output which i am getting as per the data is correct. (Ref: below screenshot)
output which i am getting
But, we need to present the report as shown below. Means: I need to fill the Type x value for all the codes.
expected output
Tried with switch command, but i couldn't make out.
Looking for expert advise.
Dear @wdx223_Daniel ,
Greetings!
I could able to achive through merging the table by powerquery and its working fine. Thank you for your support.
=IF(MAX(Table[Type]="X",CALCULATE([YourMeasure],Table[Code]=""),[YourMeasure])
Dear @wdx223_Daniel ,
Already, i tried with the below statement, but it doesn't workout. Could you please correct me if i am wrong.
Thank you so much for your quick response.
IF (SELECTEDVALUE(Data_Tbl[Type]) = "EXCEL",
DIVIDE(
CALCULATE(
SUM('Data_Tbl'[value]),
'Data_Tbl'[Type] = "EXCEL",
'Data_Tbl'[misdate] = SELECTEDVALUE(Data_Tbl[misdate]),
'Data_Tbl'[st] IN { 1 }
)
, 1000000)
,
DIVIDE(
CALCULATE(
SUM('Data_Tbl'[value]),
'Data_Tbl'[st] IN { 1 }
)
,1000000)
)
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
28 | |
12 | |
10 | |
10 | |
6 |