Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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 |
---|---|
116 | |
77 | |
57 | |
47 | |
39 |
User | Count |
---|---|
166 | |
119 | |
61 | |
58 | |
52 |