Forum Discussion
Anonymous
6 years agoNot applicable
banding - count
Hello, from a DirectQuery, I get a table named as tblPerformance which has columns like: pKey Performance asd 10 gfd 34 xyz 39 ... I have manually created a table for banding as follows: tblB...
- 6 years ago
Hi Anonymous ,
Try to count it directly:
Measure = COUNTAX( FILTER( 'tblPerformance', [Performance] >= SELECTEDVALUE(tblBanding[Low]) && [Performance] <= SELECTEDVALUE(tblBanding[High]) ), [pKey] )Best Regards,
Yingjie LiIf this post helps then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
6 years agoNot applicable
Hi, the second simplified dax is good.
Since there is no relationship between the performance table and the Band table, how can I create a column char with count on y axis and band range on x axis?
Thank you
v-yingjl
6 years agoCommunity Support
Hi Anonymous ,
You can create a column chart like this:
Best Regards,
Yingjie Li
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.