Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

How to shape this data

I need to create a chart that shows by month, how many first time registrants there are vs how many repeat registrants, relative to that point in time. I am stuck on how to manipulate the data to acc...
  • camargos88's avatar
    5 years ago

    Anonymous .

    You can use this code to create a new calculated column:

    FirstDate = IF('Table'[Campaign Date] = CALCULATE(MIN('Table'[Campaign Date]), ALLEXCEPT('Table', 'Table'[Contact ID])), "First-Time", "Repeat")