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 dateJoin 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.
Hi guys,
I have created a measure that is showing the value in the report table but not showing the total and I am not able to figure out why would not.
Solved! Go to Solution.
Hi @emarome94 ,
This is my test table:
Price list table:
Accounting table:
Please try following measure:
Measure = SUM('Price List'[Price])
Test =
VAR _FY =
CALCULATE (
MAX ( 'Price List'[Fiscal Period] ),
FILTER (
'Accounting',
'Accounting'[Fiscal Period] <= MAX ( 'Price List'[Fiscal Period] )
)
)
VAR _b =
CALCULATE ( [Measure], 'Accounting'[Fiscal Period] >= _FY )
VAR _c =
CALCULATE (
[Measure],
FILTER ( ALL ( 'Accounting' ), 'Accounting'[Fiscal Period] >= _FY )
)
RETURN
IF ( ISINSCOPE ( 'Price List'[ID] ), _b, _c )
Result:
Best regards,
Yadong Fang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @emarome94 ,
This is my test table:
Price list table:
Accounting table:
Please try following measure:
Measure = SUM('Price List'[Price])
Test =
VAR _FY =
CALCULATE (
MAX ( 'Price List'[Fiscal Period] ),
FILTER (
'Accounting',
'Accounting'[Fiscal Period] <= MAX ( 'Price List'[Fiscal Period] )
)
)
VAR _b =
CALCULATE ( [Measure], 'Accounting'[Fiscal Period] >= _FY )
VAR _c =
CALCULATE (
[Measure],
FILTER ( ALL ( 'Accounting' ), 'Accounting'[Fiscal Period] >= _FY )
)
RETURN
IF ( ISINSCOPE ( 'Price List'[ID] ), _b, _c )
Result:
Best regards,
Yadong Fang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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 |
---|---|
17 | |
8 | |
7 | |
7 | |
6 |
User | Count |
---|---|
23 | |
11 | |
10 | |
9 | |
8 |