Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
soniasweety
Master
Master

single column

Hi all 

Vegar

i have a region field  like 

TableA:

Region

Region2

Region3

Region4

Product

amount

concatenate

Region

Region2

Region3

Region4

..... like that i have   because  in front end  i have 4 seperate tabs  each tab im using seperate region field

so now user told i need one region filed  if we select one region value now it should reflect all 4 tabs..

 

so how can i make single region field here?

 

Labels (2)
4 Replies
jaibau1993
Partner - Creator III
Partner - Creator III

Hi!

If I have understood your problem then I think that you should have all regions in one column. You can do it using CrossTable. Try something like

CrossTable (RegionType, Region, 2) LOAD
	Product,
	amount,
	Region,
	Region2,
	Region3,
	Region4
From Wherever;

The output is the following:

2019-05-29 08_30_56-Dialog.png

But this may force you to modify expressions in front-end. For example, Count(Region4) now must be written Count( {<RegionType = {'Region4'}>} Region)

Regards,

Jaime

soniasweety
Master
Master
Author

No. i want a global filter .. not into the expressions 😞
soniasweety
Master
Master
Author

i want to link the filters across 4 tabs. 

 

so by that user can select one value in one filter entire dashboard will be reflected.

jaibau1993
Partner - Creator III
Partner - Creator III

Try using Field Triggers (Document Properties >> Triggers) and try to copy selections from one region to the others "on select"

Jaime