Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi there,
I am rewriting my message with current status.
I have a working messure as below:
Not Working % =
VAR _Ratio =
DIVIDE (
SUM ( 'Table'[Col. 2 ) + SUM ( 'Table'[Col 3] ), (1)
)
RETURN
MIN ( _Ratio, 1 )
OUTCOME
All values of product are dispalying as 100%.
Hi @sdhn ,
I have the same doubt as @AlexisOlson : Why do you divide by 1 in the "Not Working" measure?
Not Working % =
VAR _Ratio =
DIVIDE (
SUM ( 'Table'[Col. 2 ) + SUM ( 'Table'[Col 3] ), (1)
)
RETURN
MIN ( _Ratio, 1 )
What do the two columns represent? What is your calculation logic?
Best Regards,
Icey
without DIVIDE option
Not Working % =
VAR _Ratio =
(
SUM ( 'Table'[Col. 2 ) + SUM ( 'Table'[Col 3] ), (1)
)
RETURN
MIN ( _Ratio, 1 )
OUTCOME
ALL Products is displaying as 100 %
without RATIO,
Not Working % = SUM ( 'Table'[Col. 2 ) + SUM ( 'Table'[Col 3] ), (1)
OUTCOME:
getting very large values
Below
I don't follow what the ratio is intended to be in the second example. Why are you dividing by 1?
I do not have an answer. Just trying to copy working code. (First one)
Any product over 100 % must shows as 100 %. Also 100 must display as 100 too.
Rest same as they are. Thanks
It's not easy to answer a question based on what you don't want. What result do you want?
Why are the results you're getting not correct? How do you know they're not correct if you don't know what they should be? What do you expect to get if things work properly?
User | Count |
---|---|
12 | |
12 | |
8 | |
8 | |
6 |
User | Count |
---|---|
27 | |
19 | |
13 | |
11 | |
7 |