Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi, I have a table with sales data for last year and this year. I have visuals that show these data, and I also want to add a visual with today's sales figures.
What is the best way to only filter records with Today's date?
Thanks
Solved! Go to Solution.
Hi @Anonymous,
Add a column in your date table by using the DAX expression below.
Today = IF(Table1[Date]=TODAY(),1,0)
Then in your visual which you only show today's sales, add a filter like below:
Regards,
Charlie Liao
Hi @Anonymous,
Add a column in your date table by using the DAX expression below.
Today = IF(Table1[Date]=TODAY(),1,0)
Then in your visual which you only show today's sales, add a filter like below:
Regards,
Charlie Liao
Worked. Thank you.
User | Count |
---|---|
84 | |
78 | |
71 | |
48 | |
42 |
User | Count |
---|---|
111 | |
54 | |
50 | |
41 | |
40 |