Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Add to a table previous days values

Hallo,

 

How would it possible to creat such a table with an automatic shift of the days depening on the filter chose. 

The filter is only for one date, then the table has to show the day and four days before. 

 

ValueFri 17/01Mon 20/01Tue 21/01Wed 22/01Thu 23/01 
       
A0.9 t0.0 t0.4 t0.5 t0.9 t 
B0.5 t0.0 t0.0 t0.2 t0.6 t 
C0.6 t0.0 t0.0 t0.5 t0.7 t 
D6.0 t0.0 t0.2 t5.0 t7.7 t 
E0.0 t0.0 t0.0 t0.0 t0.0 t 
F1.1 t0.0 t0.0 t0.5 t1.1 t 
G16.4 t0.0 t0.0 t14.3 t16.1 t 
H0.0 t0.4 t0.0 t0.0 t1.1 t 
I0.0 t0.0 t0.0 t0.0 t5.3 t 
J0.0 t0.0 t0.0 t0.0 t15.1 t 
  • So, that should be something like:

    Column = IF([Date] < (TODAY() - 5),FALSE(),TRUE())

6 Replies

    • Anonymous's avatar
      Anonymous
      Not applicable

       

      amitchandak 

       

      I need to creat a column simmilar to the one in the picture to have a true or false values. If the date was in the last 5 days then True if not then False. 

       

       

       
  • Greg_Deckler's avatar
    Greg_Deckler
    Community Champion

    Tough to say but generally you would want to unpivot those date columns.

    • Anonymous's avatar
      Anonymous
      Not applicable

      Greg_Deckler amitchandak 

       

      I need to creat a column simmilar to the one in the picture to have a true or false values. If the date was in the last 5 days then True if not then False. 

       

       

       

       

       

      • Greg_Deckler's avatar
        Greg_Deckler
        Community Champion
        So, that should be something like:

        Column = IF([Date] < (TODAY() - 5),FALSE(),TRUE())