Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

ALLEXCEPT function alternative

Hi everyone,

 

Is there any alternative DAX fomula for this following formula   ""

CALCULATE(DISTINCTCOUNT(pred_fvs_inner[Product]),pred_fvs_inner[STAGE]="Closed",FILTER(pred_fvs_inner,
pred_fvs_inner[PREDICTION_DATE]=CALCULATE(max(pred_fvs_inner[PREDICTION_DATE]),
allexcept(pred_fvs_inner,pred_fvs_inner[Product])))))  ""  .
 
I am able to get the expeted output with the above formula but its not showing the correct product names with respective to the count.
 
Requirement: I want to calculate total count of products which got closed on each date and I have to show those product names in other chart when we click on count.
 
Appreciate your answer.
  • Anonymous's avatar
    Anonymous
    4 years ago

    Hi  Anonymous ,

    I created a sample pbix file(see attachment) for you, please check whether that is what you want. You can create a calculated column as below:

    Flag =
    VAR _tab =
        CALCULATETABLE (
            VALUES ( 'pred_fvs_inner'[Product] ),
            ALLEXCEPT ( 'pred_fvs_inner', 'pred_fvs_inner'[Product] ),
            pred_fvs_inner[STAGE] = "Closed"
        )
    RETURN
        IF ( 'pred_fvs_inner'[Product] IN _tab, 1, BLANK () )

    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. You can refer the following link to upload the file to the community. Thank you.

    How to upload PBI in Community

    Best Regards

1 Reply

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi  Anonymous ,

    I created a sample pbix file(see attachment) for you, please check whether that is what you want. You can create a calculated column as below:

    Flag =
    VAR _tab =
        CALCULATETABLE (
            VALUES ( 'pred_fvs_inner'[Product] ),
            ALLEXCEPT ( 'pred_fvs_inner', 'pred_fvs_inner'[Product] ),
            pred_fvs_inner[STAGE] = "Closed"
        )
    RETURN
        IF ( 'pred_fvs_inner'[Product] IN _tab, 1, BLANK () )

    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. You can refer the following link to upload the file to the community. Thank you.

    How to upload PBI in Community

    Best Regards