Reputation: 85
Hey I am working on a project that contains a column that contains only records. Each record has a row labeled "Amount" and row labeled "Currency". The row "Amount" has the value I need and "Currency" is just has the value Null. How do I convert this column of records with just the value for "Amount"? Below is what I am talking about.
Below is a picture of the column filled with records
Above is a picture of opening up the first record when you click on it
I just need that value for "Amount" not for "Currency". What would be the best way to convert this column?
Upvotes: 0
Views: 45
Reputation: 36
You can follow the steps below:
Click on the icon just besides the 'Amount' column as shown by blue arrow in the screenshot below.
Then, you will get a dialogue box as shown in the screenshot below listing your fields
amount and currency.
Upvotes: 1
Reputation: 21318
How about adding a custom column with formula
=Record.Field([Amount],"amount")
Upvotes: 1