Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello, well, after 4 hours of research and Chat GPT, it's time to ask my Forum friends!
Question: I have a DAX measure which I'm using in a card visual, which gives a count of records, and it works great.
Solved! Go to Solution.
Hi @mwolfc you already have rows, if your measure works as expected 🙂
In your measure, filter part will give your "rows"
Put this into calculated table and you will have it.
FILTER(
'Booked Sales',
'Booked Sales'[QW Date] >= (TODAY() - WEEKDAY(TODAY(), 2) - 6) && 'Booked Sales'[QW Date] <= (TODAY() - WEEKDAY(TODAY(), 2))
)
Did I answer your question? Kudos appreciated / accept solution!
Proud to be a Super User!
Hi @mwolfc you already have rows, if your measure works as expected 🙂
In your measure, filter part will give your "rows"
Put this into calculated table and you will have it.
FILTER(
'Booked Sales',
'Booked Sales'[QW Date] >= (TODAY() - WEEKDAY(TODAY(), 2) - 6) && 'Booked Sales'[QW Date] <= (TODAY() - WEEKDAY(TODAY(), 2))
)
Did I answer your question? Kudos appreciated / accept solution!
Proud to be a Super User!
Thank you so much for the suggestion! I simply dragged that measure into the drill-down report and it worked perfectly!
User | Count |
---|---|
23 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
12 | |
11 | |
7 | |
6 |