Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
If I have to calculate sum(x)/sum(y) for the latest month in a text box would I have to do it this way
sum({<[Month ] = {'$(VMaxMonth)'}>}x) /sum({<[Month ] = {'$(VMaxMonth)'}>}y)
Normally, This?
Sum({<Month = {'$(=Max(Month))'}>} (x/y))
With Variable, This?
sum({<Month = {'$(VMaxMonth)'}>} (x/y))
what is the Format of your month?
Normally, This?
Sum({<Month = {'$(=Max(Month))'}>} (x/y))
With Variable, This?
sum({<Month = {'$(VMaxMonth)'}>} (x/y))
you can also use FirstSortedValue function. A sample data would be helpful here
Did you have num month field if not please introduce in data model
Load
*,
Num(Month(DateField)) as NumMonth
From Source;
On the UI try this
sum({<NumMonth = { "$(=Max(NumMonth)" }>}x) / sum({<NumMonth = { "$(=Max(NumMonth))" }>}y)
How do we use this function in this case
consider the following data
Month SentFiles ReceivedFIles
1 100 90
2 200 100
I want to get the month 2 data in this format 100/200.
Another way try this also for latest month
sum({<NumMonth = { "$(=Num(Month(Today()))" }>}x) / sum({<NumMonth = { "$(=Num(Month(Today())))" }>}y)
try this
sum({<[Month ] = {"$(=max(Month))"}>}x) /sum({<[Month ] = {"$(=max(Month))"}>}y)
Then try this if Month is NUM field
sum({<[Month ] = {"$(=max(Month))"}>} ReceivedFIles) / sum({<[Month ] = {"$(=max(Month))"} >} SentFiles)
FirstSortedValue(ReceivedFIles/SentFiles,-Month)