Forum Discussion

mathieu_thelot's avatar
mathieu_thelot
Frequent Visitor
10 years ago
Solved

Calculate LASTNONBLANK tab with formula

I want to apply a measure to the lastupdate values of my data. 

 

to have a better comprehension, I have like 3 groups: 

All groups ended at different time. 

 

my measure is :

ratio = sum(val) / sum(other_val)

 

... I use sum() function, that's not really elegant ...

 

and I apply the ration measure to multigroups, at the last update :

 

ratio_tot = CALCULATE( [ratio] ;
LASTNONBLANK(my_tab[time];1)
)

 

This function return "blank" value

 

 

how could I apply correctly what I expect ?

 

Is there a way to apply a LASTNONBLANK filter to a table ?

 

 

Is there an other alternative to use arg1 in CALCULATE method when arg1 is not a measure? Did any function could do that ?

 

9 Replies

  • I want to apply a measure to the lastupdate values of my data. 

     

    to have a better comprehension, I have like 3 groups: 

    All groups ended at different time. 

     

    my measure is :

    ratio = sum(val) / sum(other_val)

     

    ... I use sum() function, that's not really elegant ...

     

    and I apply the ration measure to multigroups, at the last update :

     

    ratio_tot = CALCULATE( [ratio] ;
    LASTNONBLANK(my_tab[time];1)
    )

     

    This function return "blank" value

     

     

    how could I apply correctly what I expect ?

     

    Is there a way to apply a LASTNONBLANK filter to a table ?

     

     

    Is there an other alternative to use arg1 in CALCULATE method when arg1 is not a measure? Did any function could do that ?

     

    • Anonymous's avatar
      Anonymous
      Not applicable

      If I understand what you're asking for correctly, the formula should be

       

      ratio_tot = CALCULATE( [ratio] ;
      my_tab[time] = LASTNONBLANK(my_tab[time];1)
      )

    • Baskar's avatar
      Baskar
      Icon for Resident Rockstar rankResident Rockstar

      Can u please explain little bit clear.

       

      based on my understand,

      Do you want last updates sales based on date field like this ?

      • mathieu_thelot's avatar
        mathieu_thelot
        Frequent Visitor

         

        I have a table, and I want to visualise the last update of groups.

         

        time   Group    x    y 

        1/1     A           2   5

        2/1     A           4   10

        3/1     A           5   15


        1/1     B           4   6

        2/1     B           5   9

         

        1/1     C           3   5

        2/1     C           4   8

        3/1     C           5  12

        4/1     C           9  16

         

        I want to visualise the ratio_tot = x/y for each group

        All groups have a different last_update time.

        I want to have something like that:

         

        time   Group   ratio_tot

        3/1     A           5/15

        2/1     B           5/9

        4/1     C           9/16

         

         KHorseman , that's the idea:

        ratio_tot = CALCULATE( [ratio] ;
        my_tab[time] = LASTNONBLANK(my_tab[time];1)
        )

         

        but that does'nt work :

        LastNonBlank use a True/False expression to filter table 

         

  • Anonymous's avatar
    Anonymous
    Not applicable

    Duplicate thread. See answer here.

     

    ratio_tot = CALCULATE( [ratio] ;
    my_tab[time] = LASTNONBLANK(my_tab[time];1)
    )

  • Baskar's avatar
    Baskar
    Icon for Resident Rockstar rankResident Rockstar

    Can u please explain little bit clear.

     

    based on my understand,

    Do you want last updates sales based on date field like this