Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
I need to create a new column where I can get the Count of reservationId per clientId.
I have reservationId and clientId, reservationId is distinct.
I create a table to get count of reservationId per ClientId below:
Similarly I need that count in column.
Solved! Go to Solution.
Hi @Anonymous
It should be
T.Count = COUNTX (FILTER ( 'public Reservations', [clientId] = EARLIER ( [clientId] ) ),[reservationId])
Take care of pairs of parentheses. One ")" in your DAX formula just isn't at the correct position.
Best Regards,
Community Support Team _ Jing
Its giving Unexpected Parameter.
Furthermore, I am trying to get the column via Power Query Editor. @amitchandak
Hi @Anonymous
It should be
T.Count = COUNTX (FILTER ( 'public Reservations', [clientId] = EARLIER ( [clientId] ) ),[reservationId])
Take care of pairs of parentheses. One ")" in your DAX formula just isn't at the correct position.
Best Regards,
Community Support Team _ Jing
@Anonymous , this was dax, one correct
countx(filter(Table, [clientid] =earlier([clientid])) ,[reservationid])
for power query create a new table that group by client id and merge that with this table
@amitchandak I was able to use the group by and accomplish what I needed to do.
While for the DAX you provided, it is still showing Unexpected Parameter so that isn't working over here.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
88 | |
77 | |
58 | |
42 | |
38 |
User | Count |
---|---|
116 | |
81 | |
81 | |
50 | |
39 |