Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Select just one field in dimension

How do I go about summing just one field within a dimension?

For example, in the dimension "Channel", I have a list of media channels. I'd like to sum up where Channel is just "PPC". How would I do that?

With thanks,

Simon

1 Solution

Accepted Solutions
Clever_Anjos
Employee
Employee

Sum({<Channel={"PPC"}>} yourfield)

View solution in original post

3 Replies
Clever_Anjos
Employee
Employee

Sum({<Channel={"PPC"}>} yourfield)

MayilVahanan

Hi

Try like this

Sum({<Channel={'PPC'}>} yourfield)


Edit:

Ex:

Sum({<Channel={'PPC'}>} Sales)

If more than two,

Sum({<Channel={'PPC','TCS'}>} Sales)


Hope it helps

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
CELAMBARASAN
Partner - Champion
Partner - Champion

Use set analysis which will override the selection of the field

Sum({<Channel={'PPC'}>} FieldName)

Hope it helps