Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
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?)
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?)
Check out the November 2023 Power BI update to learn about new features.