Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
qlikviewforum
Creator II
Creator II

Set analysis

Using the below set analysis I finding out average utilization(After selecting the Integer and Show in Percent(%) in number tab).Now I would like to know the maximum. Can someone please help me out on this?

(SUM({<

AsOfPeriod = {'>$(=date($(VMaxPeriod)-$(VDays))) <=$(=date($(VMaxPeriod)))'}, same_day={'Y'}

  >}

    fabs(Value))

/

SUM({<

AsOfPeriod = {'>$(=date($(VMaxPeriod)-$(VDays))) <=$(=date($(VMaxPeriod)))'}, same_day={'Y'}

  >}

    fabs(Limit)))

1 Reply
jonathandienst
Partner - Champion III
Partner - Champion III

Hi

single table dimension:

=Max(Aggr(SUM......., dim1))             

or (multiple table dimensions):

=Max(Aggr(SUM......., dim1, dim2, ...))

Where SUM.... is your existing expression and dim1, dim2, etc are the dimensions on your table.

HTH

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein