- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

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 simple if...then. See below.
Company A On-Time =
IF(
'table1'[Delta] >= -60 && 'table1'[Delta] <= -15,
TRUE(),
FALSE()
)
I am attempting to make a copy of this measure for Company B and change the last Delta criteria, but Power BI says it can't find my Delta measure.
It makes no sense, becasue the original works fine.
Any assistance will be greatly appreciated!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

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
Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

The a2c measure is red, meaning it is not in the model. Need to copy that one in too
Did I answer your question?
Please help by clicking the thumbs up button and mark my post as a solution!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

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
Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

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!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

you are welcome
Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Thanks for the response.
No, I copied the code, selected "Create New Measure', and then pasted the clipboard contents. See below:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

If [delta] is a measure, the convention is to not give the table name, so show that is a measure. I have to assume to new semantic model, if it does have a [delta] measure, then maybe it is not in 'table1'? Removing the table reference will make the location of the measure irrelevant
Did I answer your question?
Please help by clicking the thumbs up button and mark my post as a solution!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Thanks for the response.
Removing the table name didn't help.

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
Anonymous
| 11-19-2019 08:31 AM | ||
04-03-2018 08:46 AM | |||
11-03-2024 10:32 PM | |||
12-16-2021 11:34 PM | |||
08-20-2024 09:13 AM |
User | Count |
---|---|
135 | |
123 | |
83 | |
61 | |
46 |