Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello I have a problem!
I have a base that contains a mail variable and I need that as the mail is repeated, the variable tells me what number of repeats it is, for example:
Either with DAX and with Query Transform. Thank you very much forum!
Solved! Go to Solution.
Hi @Syndicate_Admin , try this:
- Insert a column Index in Power Query
- Create a this calculate column:
Vez repetida =
CALCULATE (
COUNT (Tabla[Correo] ),
FILTER (
ALL(Tabla),
Tabla[Índice]<= EARLIER ( Tabla[Índice])
&& Tabla[Correo]= EARLIER ( Tabla[Correo])
)
)
- The result:
Best regards
Hi @Syndicate_Admin , try this:
- Insert a column Index in Power Query
- Create a this calculate column:
Vez repetida =
CALCULATE (
COUNT (Tabla[Correo] ),
FILTER (
ALL(Tabla),
Tabla[Índice]<= EARLIER ( Tabla[Índice])
&& Tabla[Correo]= EARLIER ( Tabla[Correo])
)
)
- The result:
Best regards
Thank you very much brother!!! Do not invent had stuck for a long time, it worked perfectly, only instead of sorting by Index I did it with a date 🙂 variable Greetings!