Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request 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!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.