Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi, I need to make a filer between two tables, one table has data on columns, and the other has de colum´s name in rows
and that my filter be like:
Filter:
---------
field1
field2
field3
field4
field5
..
..
Thanks!!!
Hi
Create Inline load table
Fields:
LOAD * Inline [
Fields
Field1
Field2 ];
What are you trying to do here. Having some difficultly in understand what is the end goal here, can you elaborate a little?
for example: when I'll choose A, only it shows sum(A)
------------------------------
Table1:
load * Inline
[
A,B,C,D
1,3,5,6
2,3,5,4
2,3,5,7
1,3,5,6
2,4,4,4
];
//----------------------------
Table2:
load * Inline
[
fields
A
B
C
D
]
You can try with 'Enable Conditional ' with the below expression in the Dimension Tab.
=SubStringCount(Concat($Field,'|'),'Field1')
Here $Field - is a system Fields (you can load the Labels with Data Island)
Sample Attached
you can use create a list box
may be u r looking for this
You can use the same expression (as i mentioned earlier) in the Expression Tab -> Conditional.
Sample Attached
Or this if its always going to be one selected value in Fields
=Sum($(=Fields))
but if I have more than one table? $field will be too big!
how can I use only fields from a specific table?