Forum Discussion
Ed2563
1 year agoFrequent Visitor
Cannot Clone Measure
If this has already been asked, I apologize. I could not find a solution searching for either "Clone" or "Copy." I am trying to create a copy of an existing measure that I have. The Measure is a...
- 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
lbendlin
1 year agoSuper User
There is no mechanism for that. You need to copy the measure code, then create a new measure, paste the code and modify it accordingly.
Ed2563
1 year agoFrequent Visitor
See the response above. I was trying to copy the contents of an existing measure into a new measure, not actually try to find a "clone" mechanism.