Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have two different measures
if([Invoice_Date_GMT_Updated]=date(max(total <[Company_Code]> [Invoice_Date_GMT_Updated])),
sum(Quantity),
null()
)
And the second one
if([As_On_Date_GMT_Updated]=date(max(total <[Company_Code]> [As_On_Date_GMT_Updated])),
sum(Quantity),
null()
)
Both individually gives correct values, but I want both of them in a single column.
I have to create both of them in the front end visualization only.
How is that possible.
You could just add them with a plus, though you'd likely have to replace the null() with 0 because null + any number = null.
I tried but my sum is coming as 0
Sorry, no idea what else to suggest without a sample app since I can't tell what those expressions actually mean and what context they're working under. One other thing, you could RangeSum() them instead of using straight addition, which is cleaner because it'll deal with the nulls better.
My actual need is this
I have 3 fields below Company Code, NumDate, Weight.
Each company code has multiple dates stored.
I want to sum my Weight on the basis of the Maximum Numdate for each company code.
Example - For company code 215, my weight should be on the basis of the maximum NumDate that is 15-12-21.
For Company code 220, my weight should be on the basis of the maximum NumDate that is 17-12-21.
Can you help me achieve this?
Sounds like you want to look at using Company Code as a dimension, max(NumDate) for the date, and FirstSortedValue() to get the weight.
Yes, can you help me write the set expression?
I tried but it didn't work as expected.
If you tried, you should post what you already did, and perhaps I (or someone else) can help fix it.
I tried this adding this in my measure
if([NumDate]=date(max(total <[Company_Code]> [NumDate])),
sum(Weight_Inventory3),
null()
)
But i want to achieve this using set analysis
This doesn't look anything like what I suggested... and it looks like you opened a thread for this question so I'll let that one play out.