Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
samuel_brierley
Creator
Creator

No idea what im doing wrong

Time=Speed=Max(Speed)
11010
22020
33030
44040
55050
66060

I have a spreadsheet with the first 2 collumns i.e time and speed. the third column is a calculation in qlikview and the table shows the results. can somebody explain why =max is NOT producing 60 in each field and how to rectify it?

thanks

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Try

=max(TOTAL Speed)

View solution in original post

5 Replies
swuehl
MVP
MVP

Try

=max(TOTAL Speed)

samuel_brierley
Creator
Creator
Author

thanks

Not applicable

Hi Samuel

in script check out this,

just instead on inline load your excel data

Sample:

Load * Inline [

Time,Speed

1,10

2,20

3,30

4,40

5,50

6,60

];

Left Join(Sample)

Load

Max(Speed) as Max

Resident tst;

Regards,

Ravikant

johnca
Specialist
Specialist

Like Ravikant said, but instead of Resident tst it should be Resident Sample.

(Usually) always better to calculate what you can in the load script. If this were a large document all that calculation time and memory is at your users' expense.

V/R,

John

Not applicable

HI John,

     In Hurry Forgot To Change the Name.

Sorry for that.