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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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! | |
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
13 | |
11 | |
10 | |
10 |