Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
hamy_IT_Dev
Contributor II
Contributor II

how to effect a field in a object to another object with different alternate state?

Hi

I have to list box with two Alternate State

Group1 for Field1

and

Group2 for Field2


f1.PNG

 

 

 

but I want to show  'Selected Value in field1' in 'field2'

(when I select '4' in field1,  fielde2 show '4' too. )

Like This:

f1 - Copy.PNG

 

 

1 Solution

Accepted Solutions
sunny_talwar

Change your expression to this

=Sum({<Year = $::Year>}SalesAmount)

This is saying that honor all selections from the state of the object, except selection in Year field... Year field will change based on selection in inherited state. 

View solution in original post

5 Replies
sunny_talwar

May be add a trigger to transfer state content from one state to the other? or may be use a select in field from one state to another state if this is only for a single field
hamy_IT_Dev
Contributor II
Contributor II
Author

Hi  

 

I ask my question the other way:

I have 3 straight table: T1, T2, T3

these tables have different Alternate state: G1, G2, G3

All tables have same expression : Sum(Amount)

I have one list box: Year

How can I select Year to change all table?

hamy_IT_Dev
Contributor II
Contributor II
Author

You can see my sample

sunny_talwar

Change your expression to this

=Sum({<Year = $::Year>}SalesAmount)

This is saying that honor all selections from the state of the object, except selection in Year field... Year field will change based on selection in inherited state. 

hamy_IT_Dev
Contributor II
Contributor II
Author

Thanks this helped,