Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
Alright, so im pretty sure im just being an idiot, i have the below measure, but i only wanty it to display data up to todays date for this measure, and have the other measure carry on, is there a way to cut this with a Today() somewhere?
Solved! Go to Solution.
Ohh, i am an idiot,.
new column on the dataset
Hi @Anonymous ,
See if this works
actual =
COUNTROWS (
FILTER (
ALL ( 'Bespoke Review Task List' ),
'Bespoke Review Task List'[Model] = "TEXT"
&& 'Bespoke Review Task List'[Status] <> "Rejected"
&& NOT (
ISBLANK ( 'Bespoke Review Task List'[Accepted Date] )
)
&& 'Bespoke Review Task List'[vehicle usage] <> "TEXT"
&& 'Bespoke Review Task List'[Sales Order] <> ""
&& 'Bespoke Review Task List'[Sales Order] <> "n/a"
&& 'Bespoke Review Task List'[Accepted Date]
<= MAX ( 'Calendar'[Date] )
&& 'Bespoke Review Task List'[Accepted Date]
>= TODAY ()
)
)
Regards,
Harsh Nathani
Appreciate with a Kudos!! (Click the Thumbs Up Button)
Did I answer your question? Mark my post as a solution!
Nope, that sets the whole measure to blank
Ohh, i am an idiot,.
new column on the dataset
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
126 | |
113 | |
71 | |
65 | |
46 |