Skip to main content
Announcements
Global Transformation Awards submissions are open! SUBMIT YOUR STORY
cancel
Showing results for 
Search instead for 
Did you mean: 
panipat1990
Creator II
Creator II

Help

Hi,

    Is It Possible To Have a Dynamic Title Of a Particular Sheet as per the maximum sale Which Is Changing EveryDay..My Title Display City Name Which Should Keep On Changing EveryDay and must Display Only The NameOf City Having Maximum Sales...Can anybody Please Share a Formula or Send A qvw With Example...

1 Solution

Accepted Solutions
parthakk
Creator II
Creator II

Hi

In sheet properties under title write the following code

Concat(if(Aggr(Rank(sum(sales))<=1,city_name),city_name),',' & chr(13))

Thanks,

Partha Kulkarni

View solution in original post

3 Replies
Not applicable

Store the Top1 value of City and total sales into a parameter, then in the sheet properties under title, call the parameter.

parthakk
Creator II
Creator II

Hi

In sheet properties under title write the following code

Concat(if(Aggr(Rank(sum(sales))<=1,city_name),city_name),',' & chr(13))

Thanks,

Partha Kulkarni

parthakk
Creator II
Creator II

Sorry instead of sum(sales) write max(sales)