Forum Discussion

vjnvinod's avatar
vjnvinod
Impactful Individual
7 years ago

Measure help

 

Hi team,

Zubair_Muhammad 

 

below is how my current measure , i need to add  filter for Year into this measure

that means when i select my slicer for  FY18 and Q1, it shows me only FY18 Q1 result and similarly for FY19 as well

currently the below measure is adding the value of Q1 of FY18 and FY19 (not filtering out correctly)

 

Cumulative =
   switch(
   true(),
   SELECTEDVALUE('Account Listing'[Quarter])="Q1",[Q1_GteRevenue],
   SELECTEDVALUE('Account Listing'[Quarter])="Q2",[Q2_GteRevenue]-[Q1_GteRevenue],
   SELECTEDVALUE('Account Listing'[Quarter])="Q3",[Q3_GteRevenue]-[Q2_GteRevenue],
   [Gterrevenue]
   )

2 Replies

  • v-xuding-msft's avatar
    v-xuding-msft
    Community Support

    Hi vjnvinod ,

     

    I create a sample using the measure to calculate the value of next year. And I put the values into a table visual.

     

    Create a new table.

    Table = CALENDARAUTO()

    Create a measure

    DATEADD = CALCULATE(SUM(Table1[value]),DATEADD('Table'[Date],1,YEAR))

    Note: the date in slicer and table is from Table 1.

     

    Best Regards,

    Xue Ding 

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

  • v-xuding-msft's avatar
    v-xuding-msft
    Community Support

    Hi vjnvinod ,

    Could you tell me if your problem has been solved? If it is, kindly mark the helpful answer as a solution if you feel that makes sense. Welcome to share your own solution. More people will benefit from here.

     

    Best Regards,

    Xue

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