Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Morning everyone,
Can someone help me with the following sum please;
I'm trying to sum all AUMValue where the AUM_StartAt is the minimum within that field, I've got the following but it doesn't work
=sum(if(AUM_StartAt=Min(AUM_StartAt),AUMValue))
Can anyone help please?
sum(if(AUM_StartAt=max(TOTAL AUM_StartAt), AUMValue))
Try this:
if(AUM_StartAt=Min(AUM_StartAt, Sum(AUMValue))
let me know
Good morning Samuel,
Try: sum({< AUM_StartAt = {'$(=Min(AUM_StartAt)'} >} AUMValue)
Best Regards,
Nilo
You can't use one aggregation function in another unless you use Aggr(). For your case take a variable and try like:
vMin=Min(AUM_StartAt)
Then expression like: =sum(if(AUM_StartAt=$(vMin),AUMValue))
Hi Samuel
This will only give you the value of the min AUM_StartAt...
Can you give us some sample data to work with?
brgds,
Anthony
Ok, this is what I've got (that works) I just need to try and avoid set analysis as I need the users to be able to interact with the chart and that currently isn't happening;
=sum({AUM_StartAt={'$(=date(Min(AUM_StartAt)))'}>}AUMValue)
I need to replicate this without using set analysis
I have tried that, unfortunately it returns a blank value. It's really rather odd.
sum(if(AUM_StartAt=max(TOTAL AUM_StartAt), AUMValue))