Forum Discussion
Cannot Clone Measure
- 1 year ago
are you creating a column? You can't use current measure when you are creating a column
or you can try
Company A On-Time =
IF(
max( 'table1'[Delta]) >= -60 &&max( 'table1'[Delta] )<= -15,
TRUE(),
FALSE()
)if this does not work, pls provide some sample data and expected output
are you creating a column? You can't use current measure when you are creating a column
or you can try
Company A On-Time =
IF(
max( 'table1'[Delta]) >= -60 &&max( 'table1'[Delta] )<= -15,
TRUE(),
FALSE()
)
if this does not work, pls provide some sample data and expected output
- Ed25631 year agoFrequent Visitor
Thanks for the response.
No, I copied the code, selected "Create New Measure', and then pasted the clipboard contents. See below: - Ed25631 year agoFrequent Visitor
Thanks!!! I tried your proposed solution using MAX (even though it wasn't in the original measure) and it worked! Kudos and thank you again!
- ryan_mayu1 year agoSuper User
you are welcome