Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreShape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.
Hi could be that is only for me complex, but the result that I would is
Starting from a table were I have several s/n and several ticket of assistance unique, I would like to got the number of all the s/n that have more of 1 ticket of assistance opened
Suggestion ??
Solved! Go to Solution.
@Flavio2021 , Create a new measure like
countx(filter(summarize(Table, Table[Serial Number], "_1", distinctCOUNT(Table[Assitance])), [_1]>1),[Serial Number])
Hi @Flavio2021 ,
Create the following two measures
Measure = CALCULATE(COUNT('Table'[Assistance]),ALLEXCEPT('Table','Table'[Serial number]))
S/n with more of 1 ticket = CALCULATE(DISTINCTCOUNT('Table'[Serial number]),FILTER(ALL('Table'),[Measure]>1))
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Flavio2021 ,
Create the following two measures
Measure = CALCULATE(COUNT('Table'[Assistance]),ALLEXCEPT('Table','Table'[Serial number]))
S/n with more of 1 ticket = CALCULATE(DISTINCTCOUNT('Table'[Serial number]),FILTER(ALL('Table'),[Measure]>1))
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Flavio2021 , Create a new measure like
countx(filter(summarize(Table, Table[Serial Number], "_1", distinctCOUNT(Table[Assitance])), [_1]>1),[Serial Number])
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Check out the November 2024 Power BI update to learn about new features.
User | Count |
---|---|
91 | |
86 | |
83 | |
76 | |
49 |
User | Count |
---|---|
145 | |
140 | |
109 | |
68 | |
55 |