I have two fields A & B - one is a lookup field and another one is a string. I'm wanting to use values of these fields to populate two other fields P & Q- one is a string and other is an integer.
Field A ( lookup field )- Pineapple 2kg
Filed B ( string )- $20 kg
I want to extract just 'Pineapple' for field A and '20' from field B and populate field P with 'Pineapple' and field Q with 20.
Field P ( string ) - Pineapple
Field Q ( integer ) - 20
How can I achieve this behavior using a workflow? I have to run this process on historical data and new incoming data. Any other suggestion is also welcome.
Things I'm trying to achieve is string parsing and conversion of string to int.
Thanks.