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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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!
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.