Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi, what am I doing wrong?
I have the columns: every month, average, last month(november).
--I made a measure that fills every month (ok)
--Calculate the average (ok)
--But it doesn't fill in the "last month" column. Detail: returns values of november (tested alone), but does not fill the column
Measure =
VAR AVARAGE_ROW = CALCULATE(AVERAGE(Table[Value]), ALLEXCEPT(Table, Table[Row]))
VAR SUM_ROW = CALCULATE(SUM(Table[Value]), FILTER(Table, Table[Mounth_Index] = 11))
VAR result =
IF(
SELECTEDVALUE(Table[Column])="AVARAGE", AVARAGE_ROW,
IF (
SELECTEDVALUE(Table[Column])="Last Mounth", SUM_ROW,
SUM(Table[Value])
)
)
RETURN result
##### results in matrix
November | AVARAGE | Last Mounth
1 | 2 |
1 | 2 |
1 | 2 |
1 | 2 |
1 | 2 |
##### expected
November | AVARAGE | Last Mounth
1 | 2 | 1
1 | 2 | 1
1 | 2 | 1
1 | 2 | 1
1 | 2 | 1
Solved! Go to Solution.
@marcosds , if Mounth_Index is filtered you need all
Try this change
VAR SUM_ROW = CALCULATE(SUM(Table[Value]), FILTER(all(Table), Table[Mounth_Index] = 11))
@marcosds , if Mounth_Index is filtered you need all
Try this change
VAR SUM_ROW = CALCULATE(SUM(Table[Value]), FILTER(all(Table), Table[Mounth_Index] = 11))
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
11 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
19 | |
17 | |
11 | |
9 | |
9 |