Forum Discussion
joshua1990
Post Prodigy
5 years agoIF ISBLANK Optimization
Hello everyone! I'm wondering if my current solution is really the best solution. Maybe someone else can provide some feedback on that measure. I have a simple transaction table with the following ...
- 5 years ago
Mate, all you need is this formula (and it's faster for obvious reasons):
Ratio = DIVIDE ( SUM ( Sales[Quantity] ), SUM ( Sales[Value] ) )
daxer-almighty
Solution Sage
5 years ago
Mate, all you need is this formula (and it's faster for obvious reasons):
Ratio =
DIVIDE (
SUM ( Sales[Quantity] ),
SUM ( Sales[Value] )
)