Forum Discussion

RafaelCM's avatar
RafaelCM
New Member
4 years ago
Solved

Column count duplicates

Hello I need to create a column that says how many times the information is repeated in a column. For example, I have a table where each row represents a sale, and in each of these rows there is th...
  • Ashish_Mathur's avatar
    4 years ago

    Hi,

    Create this calculated column formula

    =calculate(countrows(Data),filter(Data,Data[seller]=earlier([seller])))

    Hope this helps.