Forum Discussion
SteelChampzz
Helper II
3 years agoHow would I write this as a Dax Measure?
So I have this forumla from Excel: =B11/('Other Products'!E18+'Other Products'!E19) How can I create a measure in Dax out of this? Thanks for the help Everyone!
- 3 years ago
Hi SteelChampzz ,
Please try this:
MyMeasure = Divide(B11,('Other Products'!E18 + 'Other Products'!E19))
Let me know if you have any questions.
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos πare nice too.
Nathaniel
Nathaniel_C
Community Champion
3 years agoHi SteelChampzz ,
Please try this:
MyMeasure = Divide(B11,('Other Products'!E18 + 'Other Products'!E19))
Let me know if you have any questions.
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos πare nice too.
Nathaniel
SteelChampzz
Helper II
3 years agoYes you did!, that worked! appreciate the help
- Nathaniel_C3 years ago
Community Champion