The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello,
I am literally pulling my hair out! My source data is YTD . I managed to create month only data but have run into an issue when I try to create a Full Year Budget. How can I show a full year budget that will not change with the date slicer?
Thanks in advance
Solved! Go to Solution.
Hi @LynnM ,
I suggest you to to try REMOVEFILTER() or ALL() function in your code. You can create a Dimdate table with continuous date ,then create a relationship between 'Data'[Date] and 'DimDate'[Date] and create a measure.
Measure:
YTD remove filter =
CALCULATE (
SUM ( 'Data'[Value] ),
FILTER ( ALL ( 'Date' ), 'Date'[Year] = YEAR ( TODAY () ) )
)
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @LynnM ,
I suggest you to to try REMOVEFILTER() or ALL() function in your code. You can create a Dimdate table with continuous date ,then create a relationship between 'Data'[Date] and 'DimDate'[Date] and create a measure.
Measure:
YTD remove filter =
CALCULATE (
SUM ( 'Data'[Value] ),
FILTER ( ALL ( 'Date' ), 'Date'[Year] = YEAR ( TODAY () ) )
)
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you! This worked.
Hi Lynn,
If measure is on filter, remove filter.
Filtering Tables in DAX - SQLBI
Could you post sample data?