Forum Discussion
Anonymous
7 years agoNot applicable
indexing
Hi everyone, I have a problem and cannot solve We have 2 offline shops, Shop A and Shop B, every shop have its own sales sorted by date. I want to index that sales by date and by shop. ex...
- 7 years ago
Anonymous
One way could be to use a calculated column
Column = RANKX ( FILTER ( Table1, [Shop name] = EARLIER ( [Shop name] ) ), [Date],, ASC )
Zubair_Muhammad
7 years agoCommunity Champion
Anonymous
One way could be to use a calculated column
Column = RANKX ( FILTER ( Table1, [Shop name] = EARLIER ( [Shop name] ) ), [Date],, ASC )
- Anonymous7 years agoNot applicable
thank you, appreciate