Forum Discussion

Caitlin_Knox's avatar
Caitlin_Knox
Advocate III
9 years ago
Solved

Calculating current Quarter

I'm trying to create a calculated column to return the current quarter like I do for current month. I use these mostly as a visualization filter so the report updates to the current information. Thi...
  • Flori_Abb's avatar
    9 years ago

    Hi Caitlin_Knox

     

    i guess you enter this formula in a date table and you want to add a column what shows you 1 if the date is the current quater. In this case i added before a quaternumber column:

     

    QuaterNumber = if(dim_Date[Year] = year(now());roundup(dim_Date[MonthNumberOfYear]/3;0);0) and then

     

    Current QTD = if(dim_Date[QuaterNumber] = roundup(month(now()-1)/3;0);1;0)

    That works for me fine, maybe it helps you also.

    KR

    Florian