Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hoping someone can help. I'm trying building a table to display total values of certain fields, but to do it in a way where the selections made won't change them.
Any ideas?
Many thanks!
You can use set identifier 1 to disregard all selections, like
Count( {1} FIELD)
Sum( {1} Amount)
Hi,
You can also try this,
For total row count:
Count({<Field=>} Field)
For total row count except common field:
Count(DISTINCT {<Field=>} Field)
Thanks swuehl! I've now realised I might need to make it slightly more complicated. My dataset contains multiple years and what I would like to be able to do is count/sum the total rows/values for a particular year regardless of other selections made. Essentially, I'm looking to add a summary box for a particular year which won't change even if users make other selections within fields including the year field.
Is this possible?
Appreciated!
Thanks Susovan, I've now realised I might need to make it slightly more complicated. My dataset contains multiple years and what I would like to be able to do is count/sum the total rows/values for a particular year regardless of other selections made. Essentially, I'm looking to add a summary box for a particular year which won't change even if users make other selections within fields including the year field.
Is this possible?
Appreciated!
Count( {1<Year = {2016} >} FIELD)
Sum({<field=>}Amount)
You can also try this,
Sum({<Year={"$(=Max(Year))"}>}Value)
use this Sum({<Year={"$(=Max(Year))"}>}Value) or hardcode the value of year if looking for some other year and detach the text from all other selction.