Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
Need your help..
Please find attched table
is it possible to make sub totals llike :
a+b
a+b+c
a+b+c+e
a+b+c+d+e
it can be in strait table or pivot
Thanks
Roee
Roll | Sum |
---|---|
a | 10 |
b | 5 |
c | 4 |
d | 3 |
e | 2 |
hi,
Maybe something like this
Subtotal:
LOAD * INLINE [
Roll,Sum
a ,10
b ,5
c, 4
d ,3
e, 2
];
for Each a in 'ab','abc','abce','abcde'
load
*,
if( SubStringCount('$(a)',Roll),'$(a)') as Group
Resident Subtotal ;
NEXT
DROP Table Subtotal;
Hi Roee
se the attached
hope help
Fernando K.
Sub-totals? can you elaborate how your solution should like if what fkeuroglian provided doesn't work for you?
Best,
Sunny
hi,
Maybe something like this
Subtotal:
LOAD * INLINE [
Roll,Sum
a ,10
b ,5
c, 4
d ,3
e, 2
];
for Each a in 'ab','abc','abce','abcde'
load
*,
if( SubStringCount('$(a)',Roll),'$(a)') as Group
Resident Subtotal ;
NEXT
DROP Table Subtotal;
Hi Roee,
Please find the attachment, i hope it will help you.
Thank you !
Nandu
Nanda
Same xls
Same set expression
Same objects
Same result
Different qvw name
Really?
I hate when people do that
Hi,
Thank You
Which Dim and Exp did you use ?
Thanks
Roee
Hi Susant,
did you do this example on the base of straight table?
thanks
beck