The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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! | |
User | Count |
---|---|
13 | |
8 | |
6 | |
6 | |
5 |
User | Count |
---|---|
23 | |
14 | |
13 | |
8 | |
8 |