Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi all,
I am trying to represent the total rain of different events along the time axis (as per image and table at the bottom). So when an event start, it should represent the total rainfall of that event until the event ends.
I tried with the dash function below but I am not getting the desires results. Would anyone have any sugestions on what I am doing wrong?
Many thanks,
Time | Rain mm | Event Group |
1 | 1 | 1 |
2 | 2 | 1 |
3 | 1 | 1 |
4 | 0 | 0 |
5 | 0 | 0 |
6 | 1 | 2 |
7 | 4 | 2 |
8 | 2 | 2 |
9 | 1 | 2 |
10 | 0 | 0 |
11 | 0 | 0 |
12 | 0 | 0 |
13 | 0 | 0 |
14 | 0 | 0 |
Solved! Go to Solution.
@Anonymous - If I understand this correctly, try this measure:
Measure =
VAR __EventGroup = MAX([EventGroup])
RETURN
SUMX(FILTER(ALL('Table'),[Event Group]=__EventGroup),[Rain mm])
See the attached PBIX below sig, Table (20), Measure 20.
@Anonymous , You can have new column like
Column = maxX(filter(Allselected(Table), Table[Event Group] =earlier(Table[Event Group])),Table[Rain])
or measure like
measure = calculate(max(Table[Rain]), allexcept(Table, Table[Event Group]))
or
measure = calculate(max(Table[Rain]), filter(Allselected(Table), Table[Event Group] =max(Table[Event Group])))
@Anonymous - If I understand this correctly, try this measure:
Measure =
VAR __EventGroup = MAX([EventGroup])
RETURN
SUMX(FILTER(ALL('Table'),[Event Group]=__EventGroup),[Rain mm])
See the attached PBIX below sig, Table (20), Measure 20.