Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

re write the following measures as variable

HI Experts

 

how could i consolidate and re write the following three meaure as a varibale as they are taking some time to compuate the output answer...

measure 1.

Cumulative Complaints = CALCULATE([TotalComplaintswithTrends],
FILTER(
ALLSELECTED(PMS_FINANCIAL_PDS),
PMS_FINANCIAL_PDS[Month Start] <= MAX(PMS_FINANCIAL_PDS[Month Start])
))
 
measure 2.
Cumulative Sales = CALCULATE([TotalSalesTrend],
FILTER(
ALLSELECTED(PMS_TM1_SALES_VOLUME),
[Month Start] <= MAX(PMS_FINANCIAL_PDS[Month Start])
))
 
resultant measure is
Cumulative Complaint Rate = IF(DIVIDE([Cumulative Complaints],[Cumulative Sales],0)<>0,DIVIDE([Cumulative Complaints],[Cumulative Sales],0))
+0
1 ACCEPTED SOLUTION
v-yuta-msft
Community Support
Community Support

@Anonymous ,

 

Maybe the measure should be like below:

Cumulative Complaint Rate =
VAR Cumulative_Complaints =
    CALCULATE (
        [TotalComplaintswithTrends],
        FILTER (
            ALLSELECTED ( PMS_FINANCIAL_PDS ),
            PMS_FINANCIAL_PDS[Month Start] <= MAX ( PMS_FINANCIAL_PDS[Month Start] )
        )
    )
VAR Cumulative_Sales =
    CALCULATE (
        [TotalSalesTrend],
        FILTER (
            ALLSELECTED ( PMS_TM1_SALES_VOLUME ),
            [Month Start] <= MAX ( PMS_FINANCIAL_PDS[Month Start] )
        )
    )
RETURN
    IF (
        DIVIDE ( Cumulative_Complaints, Cumulative_Sales, 0 ) <> 0,
        DIVIDE ( Cumulative_Complaints, Cumulative_Sales, 0 )

 

Community Support Team _ Jimmy Tao

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-yuta-msft
Community Support
Community Support

@Anonymous ,

 

Maybe the measure should be like below:

Cumulative Complaint Rate =
VAR Cumulative_Complaints =
    CALCULATE (
        [TotalComplaintswithTrends],
        FILTER (
            ALLSELECTED ( PMS_FINANCIAL_PDS ),
            PMS_FINANCIAL_PDS[Month Start] <= MAX ( PMS_FINANCIAL_PDS[Month Start] )
        )
    )
VAR Cumulative_Sales =
    CALCULATE (
        [TotalSalesTrend],
        FILTER (
            ALLSELECTED ( PMS_TM1_SALES_VOLUME ),
            [Month Start] <= MAX ( PMS_FINANCIAL_PDS[Month Start] )
        )
    )
RETURN
    IF (
        DIVIDE ( Cumulative_Complaints, Cumulative_Sales, 0 ) <> 0,
        DIVIDE ( Cumulative_Complaints, Cumulative_Sales, 0 )

 

Community Support Team _ Jimmy Tao

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

Try

//Option 1
averagex(summarize(FILTER(
ALLSELECTED(PMS_FINANCIAL_PDS),
[Month Start] <= MAX(PMS_FINANCIAL_PDS[Month Start])
),"_1",[TotalComplaintswithTrends],"_2",[TotalSalesTrend]),divide([_1],[_2]))

//Option 2
averagex(summarize(calculatetable(PMS_FINANCIAL_PDS,FILTER(
ALLSELECTED(PMS_FINANCIAL_PDS),
[Month Start] <= MAX(PMS_FINANCIAL_PDS[Month Start])
)),"_1",[TotalComplaintswithTrends],"_2",[TotalSalesTrend]),divide([_1],[_2]))
Anonymous
Not applicable

Hi Amit..
The second messure reference the sales table, both measures are not the same PMS_Financial_PDS..

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.