This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi Community,
I really need your help.
Im trying to creat a colum with the frequency of the distinct Bookings ID per emailAdress, this with the purpose of having the frequency of booking each email had done.
I have issues creating it inside Power BI , i have tried to creat a new table on SQL but i can not link it with my existing table onPowerBi because they must be unique values.
Thanks!
Solved! Go to Solution.
Hi, Using this table like sample data:
Accord to your post you want a calculated column with Distinct Count of Booking Ids in Each Email Address
To obtain this you should use this DAX:
DC-BookingIDperEMail =
CALCULATE (
DISTINCTCOUNT ( Table1[BookingID] ),
FILTER ( Table1, Table1[Email] = EARLIER ( Table1[Email] ) )
)
Now if you just want to show in a visual, you can do it using this:
Regards
Victor
Lima - Peru
You may also use DAX below to create a calculated table.
Table =
SUMMARIZECOLUMNS (
Table1[EmailAddress],
"Count", DISTINCTCOUNT ( Table1[BookingID] )
)
Hi, Using this table like sample data:
Accord to your post you want a calculated column with Distinct Count of Booking Ids in Each Email Address
To obtain this you should use this DAX:
DC-BookingIDperEMail =
CALCULATE (
DISTINCTCOUNT ( Table1[BookingID] ),
FILTER ( Table1, Table1[Email] = EARLIER ( Table1[Email] ) )
)
Now if you just want to show in a visual, you can do it using this:
Regards
Victor
Lima - Peru
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 29 | |
| 25 | |
| 25 | |
| 21 | |
| 14 |
| User | Count |
|---|---|
| 59 | |
| 50 | |
| 25 | |
| 20 | |
| 20 |