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
Hi Fabric community.
I have had a search around and found partially the solution but I am having trouble excluding empty cells on the following count.
They say 1 photo is 1000 words so here is the problem with attached DB
- I am using the following measure but null values are counted as "1!
DoA_Individual_Count =
SUMX(
'test',
LEN('test'[Approved_Actions])
-LEN(
SUBSTITUTE(
'test'[Approved_Actions],
",",
""
)
)+1)
Any ideas?
User_ID Approved_Actions Count_of_approved_Actions
1 a 1
2 a,b 2
3 a,c 2
4 b,c,d 3
5 d 1
6 a 1
7 "0" or "null"
8 d 1
9 "0" or "null"
10 "0" or "null"
Solved! Go to Solution.
Hello @IoannisT ,
Please change your measure as below:
DoA_Individual_Count =
IF(MAXX('Table','Table'[Approved_Actions])<>BLANK(),
SUMX(
'Table',
LEN('Table'[Approved_Actions])
-LEN(
SUBSTITUTE(
'Table'[Approved_Actions],
",",
""
)
)+1),0)
Output looks as below:
If this post helps, then please consider accepting it as the solution to help other members find it more quickly. Thank You!!
Hi @IoannisT ,
You can produce your required output in the following manner by tweaking your formula.
I attach a pbix file as an example.
Hi @IoannisT ,
You can produce your required output in the following manner by tweaking your formula.
I attach a pbix file as an example.
Thank you very much. Wordek like a charm
Hello @IoannisT ,
Please change your measure as below:
DoA_Individual_Count =
IF(MAXX('Table','Table'[Approved_Actions])<>BLANK(),
SUMX(
'Table',
LEN('Table'[Approved_Actions])
-LEN(
SUBSTITUTE(
'Table'[Approved_Actions],
",",
""
)
)+1),0)
Output looks as below:
If this post helps, then please consider accepting it as the solution to help other members find it more quickly. Thank You!!
Thank yo uso much. It works!
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.
| User | Count |
|---|---|
| 47 | |
| 44 | |
| 39 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 70 | |
| 68 | |
| 32 | |
| 27 | |
| 25 |