Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I like to add SOURCE=TS into above expression , I try below :-
Solved! Go to Solution.
Hey @admin11 ,
is there a reason for the double Calculate?
Try the following measure:
_YTD REV TDS =
CALCULATE(
[AMOUNT],
DATESYTD( 'Date'[Date], "12/31" ),
GL[1_REV] = "REV",
FILTER( SALES, [SOURCE] = "TS" )
)
Hey @admin11 ,
is there a reason for the double Calculate?
Try the following measure:
_YTD REV TDS =
CALCULATE(
[AMOUNT],
DATESYTD( 'Date'[Date], "12/31" ),
GL[1_REV] = "REV",
FILTER( SALES, [SOURCE] = "TS" )
)
Hey @admin11 ,
I think I found the error.
The measure should look like that:
_YTD REV TDS =
CALCULATE(
[AMOUNT],
DATESYTD( 'Date'[Date], "12/31" ),
GL[1_REV] = "REV",
GL[SOURCE] = "TS"
)
But the problem is that the column GL[SOURCE] doesn't contain any values "TS". For that reason the measure is always empty.
Please let me if you need further assistance.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 98 | |
| 72 | |
| 50 | |
| 49 | |
| 42 |