Forum Discussion
PKostta
2 years agoRegular Visitor
Monthly values and ALLEXCEPT
Hi, I'm trying to get the monthly values for a measure i created but it only shows the total for every month. If i remove the ALLEXCEPT condition it works fine. Example: Measure with A...
Anonymous
2 years agoNot applicable
Hi PKostta ,
Please try this:
v_Count_CLCL_ID_BASE = CALCULATE(
DISTINCTCOUNT(RAID_ClaimsDrivers_LINE[CLCL_ID]),
FILTER(
ALL(RAID_ClaimsDrivers_MEME),
RAID_ClaimsDrivers_MEME[CALC_SEGMENTO] = "INDIVIDUAL"
|| RAID_ClaimsDrivers_MEME[CALC_SEGMENTO] = "MICROS"
|| RAID_ClaimsDrivers_MEME[CALC_SEGMENTO] = "TAILOR MADE"
),
FILTER(
ALL(RAID_ClaimsDrivers_MEME),
RAID_ClaimsDrivers_MEME[CALC_REDE] = "MED1"
),
KEEPFILTERS(
FILTER(
ALL(RAID_ClaimsDrivers_CLCL[COBERTURA], RAID_ClaimsDrivers_CLCL[Cobertura_Filter]),
RAID_ClaimsDrivers_CLCL[CLCL_PAY_PR_IND] = "P"
)
)
)
If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.