Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I am trying to convert the tableau dashboard to power BI.
In line chart, one of the line is showing value only till today's date.
For Example:
In tableau the blue line is showing data only till today's date
But in Power BI it is showing data continuously. How do I restrict the data till today?
help in this is needed .
Thanks in advance
Solved! Go to Solution.
Hello,
Without knowing anything at all about your data model, you should just need to wrap your measure in an IF function to check for the date. Something like the below should work:
IF (
SELECTEDVALUE ( 'Dates'[Date] ) <= TODAY(),
[Shipping Trend]
)
----------------------------------
If this post helps, please consider accepting it as the solution to help other members find it quickly. Also, don't forget to hit that thumbs up and subscribe! (Oh, uh, wrong platform?)
Proud to be a Super User! | |
Hello,
Without knowing anything at all about your data model, you should just need to wrap your measure in an IF function to check for the date. Something like the below should work:
IF (
SELECTEDVALUE ( 'Dates'[Date] ) <= TODAY(),
[Shipping Trend]
)
----------------------------------
If this post helps, please consider accepting it as the solution to help other members find it quickly. Also, don't forget to hit that thumbs up and subscribe! (Oh, uh, wrong platform?)
Proud to be a Super User! | |