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 to calculate measure DIFF = [PLAN]-[SUMM] over only [Type] column for every value
and summ only values >0
[PLAN] = SUM(tab[plan]) [SUMM] = SUM(tab[fact])
I tried use SUMMARIZECOLUMNS, but I got error "SummarizeColumns() and AddMissingItems() may not be used in this context"
DIFF = VAR tab = SUMMARIZECOLUMNS(crm[Type];"diff";[PLAN]-[SUMM])) RETURN SUMX(tab;[diff])
and cant understand how to add checking
[PLAN]-[SUMM] > 0
in this calculation
Help please
Solved! Go to Solution.
Without having your source dataset to work with, I can only attempt a theoretical solution... have a try and see if this works:
Create a measure called "DIFF (PLAN-SUMM)" :
=VAR isInRow = HASONEVALUE( tab[Type] )
RETURN SUMX(
VALUES( tab[Type] )
, CALCULATE(
VAR thePlan = SUM(tab[PLAN])
VAR theSumm = SUM(tab[SUMM])
VAR DIFF = thePlan - theSumm
RETURN
IF ( DIFF >= 0, DIFF
, IF( isInRow, DIFF
, 0 )
)
)
)
This measure should work in both the grand total cell and in each row.
When it's in "row mode", all kinds of DIFF's will be displayed, but
when it's in grand total mode, only DIFF>=0 will be included.
Without having your source dataset to work with, I can only attempt a theoretical solution... have a try and see if this works:
Create a measure called "DIFF (PLAN-SUMM)" :
=VAR isInRow = HASONEVALUE( tab[Type] )
RETURN SUMX(
VALUES( tab[Type] )
, CALCULATE(
VAR thePlan = SUM(tab[PLAN])
VAR theSumm = SUM(tab[SUMM])
VAR DIFF = thePlan - theSumm
RETURN
IF ( DIFF >= 0, DIFF
, IF( isInRow, DIFF
, 0 )
)
)
)
This measure should work in both the grand total cell and in each row.
When it's in "row mode", all kinds of DIFF's will be displayed, but
when it's in grand total mode, only DIFF>=0 will be included.
You're welcome!
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 |
---|---|
80 | |
76 | |
61 | |
36 | |
32 |
User | Count |
---|---|
91 | |
60 | |
59 | |
49 | |
45 |