Is there an easy way to make 2 fields interchange from input to calculated

I'd like to create an editable Table View (if possible) with 3 data columns" Qty and either EA or Days. The idea being if the user enters Qty and EA, the Days field is calculated, or if the user enters Qty and Days, the App calculates the EA.

I can probably mess with Initial values to get it to work 1st time, but then if the user decides to update the data, especially if they change from using the alternate calculated field, how do I get the app to re-calc.

Does anyone know of a relatively easy way to do this, or am I asking the impossible?

Solved Solved
0 9 99
1 ACCEPTED SOLUTION

The following may or may not fit your requirement. But just presenting a possibility.

The minimum requirement is the record needs to be an existing record and the implementation is through actions. So it is possible in detail and summary view such as table view with inline action.

The expressions assumed are  [Days]* [Quantity]= [EA] and [EA]/[Quantity]= [Days]

Implementation in detail view is captured in GIFs below

Compute EA action.

Please note the [EA] changes from 700 to 800 when the days are changes from 35 to 40

chrome-capture-2025-5-4 (1).gif

 

The [Days] change from 30 to 35 when EA is changed from 600 to 700

chrome-capture-2025-5-4.gif

 

The implementation below is in table view with an inline action.

When [EA] is changed from 1500 to 2000 , the [Days] change from 75 to 100

chrome-capture-2025-5-4 (3).gif

 

When [Days] are change from 50 to 75, the [EA] changes from 1000 to 1500

chrome-capture-2025-5-4 (2).gif

 

 

 

View solution in original post

9 REPLIES 9