Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a data like as below
Budget | A Project | B Project | C Project |
0.13 | A | ||
0.26 | B | ||
0.33 | C | ||
0.49 | A | ||
0.7 | B |
I need to display in a text object the sum of Budget of the Project A and Project B that is 1.58 (excluding Project C)
How to achieve it...
Thanks in advance
Regards,
Yoganantha Prakash G P
Hi,
You can try something like this:
=Sum({<[A Project]={'*'}-{''}>+<[B Project]={'*'}-{''}>}Budget)
Thanks,
Pooja
Hi Use this expression in text object
=Sum({<[A Project]={'A'}>}Budget) + Sum({<[B Project]={'B'}>}Budget)
Hi Yoganatha
try this
=Sum({<[A Project]={'A'}>}Budget) + Sum({<[B Project]={'B'}>}Budget)
Hello Yoganantha,
Use simply this.
=sum( {<[A Project]={'A'}> + < [B Project]={'B'}>} Budget )
Hi all,
I have given wrong data set.
Kindly find the new one
Budget | A Project | B Project | C Project |
0.13 | 1 | ||
0.26 | 1 | ||
0.33 | 1 | ||
0.49 | 2 | ||
0.7 | 2 | ||
0.5 | 3 | ||
0.6 | 3 |
Hi Pooja,
I have given wrong data set.
Kindly find the new one
Budget | A Project | B Project | C Project |
0.13 | 1 | ||
0.26 | 1 | ||
0.33 | 1 | ||
0.49 | 2 | ||
0.7 | 2 | ||
0.5 | 3 | ||
0.6 | 3 |
Hi,
Same expression works for this data set as well.
=Sum({<[A Project]={'*'}-{''}>+<[B Project]={'*'}-{''}>}Budget)
Thanks,
Pooja
it is not working Pooja
Hello Yoganantha,
Try this one.
=sum( {<[A Project]={">=1"}> + < [B Project]={">=1"}>} Budget )