Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hello guys
There's a table like :
| PC_ID | AC NO. | PARTY | SEAT |
| RJ-8 | 59 | BJP | 8 |
| RJ-8 | 60 | INC | 8 |
| RJ-8 | 61 | INC | 8 |
| RJ-8 | 62 | BJP | 8 |
| RJ-8 | 65 | INC | 8 |
| RJ-8 | 66 | BJP | 8 |
| RJ-8 | 67 | INC | 8 |
| RJ-8 | 68 | INC | 8 |
MY REQUIRED TABLE IS LIKE:
| PC_ID | AC NO. | PARTY | SEAT | STATUS |
| RJ-8 | 59 | BJP | 8 | 3/8 |
| RJ-8 | 60 | INC | 8 | 5/8 |
| RJ-8 | 61 | INC | 8 | 5/8 |
| RJ-8 | 62 | BJP | 8 | 3/8 |
| RJ-8 | 65 | INC | 8 | 5/8 |
| RJ-8 | 66 | BJP | 8 | 3/8 |
| RJ-8 | 67 | INC | 8 | 5/8 |
| RJ-8 | 68 | INC | 8 | 5/8 |
BASICALLY IT COUNTS THE PARTY COLUMN VALUES WITH TOTAL SEATS AND RETURN A RESULT COLUMN.
Thanks & Regards ...
Solved! Go to Solution.
Hi @BIswajit_Das,
If you decide to add this column via DAX, here is an option:
And in plain text:
STATUS =
VAR currentParty = [PARTY]
RETURN COUNTROWS ( FILTER ( 'Table', [PARTY] = currentParty ) ) & "/" & [SEAT]
Best Regards,
Alexander
Hi @BIswajit_Das ,
Your solution is great, @barritown . It worked like a charm! Here I have another idea in mind, and I would like to share it for reference.
Measure performs better compared to computed columns because it doesn't take up memory space.
So I would recommend that you try not to use calculated columns for functions that can be implemented using measure, especially since the performance difference will be more noticeable when working with large data.
Please create a measure:
STATUS =
VAR TotalSeats =
MAX ( 'Table'[SEAT] )
VAR PartyCount =
CALCULATE ( COUNTROWS ( 'Table' ), ALLEXCEPT ( 'Table', 'Table'[PARTY] ) )
RETURN
CONCATENATE ( CONCATENATE ( PartyCount, "/" ), TotalSeats )
The final page effect is as follows:
pbix file is attached.
If you have any further questions please feel free to contact me.
Best Regards,
Yang
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
Hi @BIswajit_Das ,
Your solution is great, @barritown . It worked like a charm! Here I have another idea in mind, and I would like to share it for reference.
Measure performs better compared to computed columns because it doesn't take up memory space.
So I would recommend that you try not to use calculated columns for functions that can be implemented using measure, especially since the performance difference will be more noticeable when working with large data.
Please create a measure:
STATUS =
VAR TotalSeats =
MAX ( 'Table'[SEAT] )
VAR PartyCount =
CALCULATE ( COUNTROWS ( 'Table' ), ALLEXCEPT ( 'Table', 'Table'[PARTY] ) )
RETURN
CONCATENATE ( CONCATENATE ( PartyCount, "/" ), TotalSeats )
The final page effect is as follows:
pbix file is attached.
If you have any further questions please feel free to contact me.
Best Regards,
Yang
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
Hi @BIswajit_Das,
If you decide to add this column via DAX, here is an option:
And in plain text:
STATUS =
VAR currentParty = [PARTY]
RETURN COUNTROWS ( FILTER ( 'Table', [PARTY] = currentParty ) ) & "/" & [SEAT]
Best Regards,
Alexander
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 55 | |
| 34 | |
| 31 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 74 | |
| 71 | |
| 37 | |
| 35 | |
| 25 |