Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
hi,
i have this measure:
SUMX (
VALUES ( TimeTable[Times_DimTime_By_WeeksWeek] ),
[ValidObservationWeek]
)
and i want it to sum only when the period is equal to the period in my filter
i tried using allexcept but i didnt succeed
any suggestions?
Solved! Go to Solution.
May be something like this ....Not sure
Measure =
SUMX (
FILTER (
TimeTable,
TimeTable[Times_DimTime_By_WeeksWeek] = SELECTEDVALUE ( MyfilterTable[Column] )
),
[ValidObservationWeek]
)
May be something like this ....Not sure
Measure =
SUMX (
FILTER (
TimeTable,
TimeTable[Times_DimTime_By_WeeksWeek] = SELECTEDVALUE ( MyfilterTable[Column] )
),
[ValidObservationWeek]
)
it says that 'SELECTEDVALUE'. It is not a valid table, variable, or function name.
i'm using excel 2016, maybe this version doesnt support the SELECTEDVALUE function?
Hi @liran,
Have you solved your problem?
If you have solved your problem, please always accept the replies making sense as solution to your question so that people who may have the same question can get the solution directly.
If you still need help, please feel free to ask.
Best Regards,
Cherry
You can use VALUES or MAX or MIN instead of SELECTEDVALUE as well
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 49 | |
| 40 | |
| 37 | |
| 14 | |
| 14 |
| User | Count |
|---|---|
| 86 | |
| 69 | |
| 37 | |
| 29 | |
| 26 |