Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
I've been trying to understand the DAX code required to build a calculated column that addresses count based on conditional formatting.
I have two tables, one table is acting as a summary table for FICO data for further analysis. The other table is the source table for the data.
I have a range value (FICO Band) for all rows in the source table. I would like to count (for total) the occurrences of each of one these values and import this count into the summary table via a calculated column named something like Count of FICO Range.
Entries in Source Table
Summary Table
Any assistance in crafting the DAX for the calculated column would be appreciated.
Hi @vbiqvitovs,
According to your description, you can first create a relationship between your "Entries in Source Table" and "Summary Table" using "FICO" and "FICO Range" column. Then you should be able to use the formula below to create the "Count of FICO Range" calculated column in "Summary Table".
Count of FICO Range = COUNTROWS ( RELATEDTABLE ( 'Entries in Source Table' ) )
Regards
Hi @vbiqvitovs
If you create a measure that is CountofRows = Calculate (Countrows(FICOBand))
and then plot FICO Range as the Axis and CountofRows as the Values you should get what you want.
If this olves your issue please accept this as a solution and also give KUDOS.
Cheers
CheenuSing
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.
Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.
| User | Count |
|---|---|
| 48 | |
| 46 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 70 | |
| 69 | |
| 32 | |
| 27 | |
| 26 |