Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
pgalvezt
Specialist
Specialist

Show Data

Hello,

I have a table where I am showing cumulative data. (Pivot Table) I need to show the same table but horizontally. When I try to pivot the table data dissapear.

My formula Expressions are:

rangesum(above( Num(sum(VENTAS),'#.##0')/Divisor,0,rowno(total)))    (Sales)

rangesum(above( Num(Sum(VENTAS),'$ #.##0;-$ #.##0')/Divisor,0,rowno(total)))/Num(Sum(TOTAL VENTAS),'$ #.##0;-$ #.##0')/Divisor  (%)

Input

A

a  1  0.9

b  5  1.3

Output

A

a 1      5

b 0.9  1.3

Thanks!

Labels (1)
1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

Try this out:

RangeSum(Before(Sum(VENTAS)/Divisor, 0, ColumnNo(TOTAL)))

View solution in original post

3 Replies
robert_mika
MVP
MVP

Try to change Above to Before

Missing Manual - Before() and After()

sunny_talwar
MVP
MVP

Try this out:

RangeSum(Before(Sum(VENTAS)/Divisor, 0, ColumnNo(TOTAL)))

sunny_talwar
MVP
MVP

And RowNo to ColumnNo