Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!See when key Fabric features will launch and what’s already live, all in one place and always up to date. Explore the new Fabric roadmap
Hi all'ya.
Data comes in as follows:
Project name, beginning date for billing, end date for billing, total sum and monthly revenue. Each of these is their own field. How do I show on the report that, e.g. billing that started March and ended in May shows values for all these three months?
Hi @Anonymous ,
I suggest you to create an unrelated calendar table and add a measure to filter the visual.
Data model:
Measure:
Filter =
VAR _RANGESTART =
MIN ( 'Calendar'[Date] )
VAR _RANGEEND =
MAX ( 'Calendar'[Date] )
RETURN
IF (
MAX ( 'Table'[beginning date for billing] ) >= _RANGESTART
&& MAX ( 'Table'[end date for billing] ) <= _RANGEEND,
1,
0
)
Add this measure into visual level filter and set it to show items when value =1.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Problem is, I want to show the months between - not just amount of months or the first and the last. But I want to list all the months between.
Yes, thank you so much. I'll look at this with more thought tomorrow.
User | Count |
---|---|
88 | |
74 | |
69 | |
59 | |
56 |
User | Count |
---|---|
40 | |
38 | |
34 | |
32 | |
28 |