We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. 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
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 56 | |
| 40 | |
| 35 | |
| 18 | |
| 18 |
| User | Count |
|---|---|
| 69 | |
| 64 | |
| 38 | |
| 34 | |
| 23 |