Oct 16, 2024 04:02 AM
Hello,
I have a look up field which displays a value generated from a formula that lives on another base. I am trying to create a formula field that multiplies the value in the look up field by the percentage value in another field that is generated within the same base (i.e. is not a look up field).
I have tried the following:
"Look up field value field" * "percentage value field"
and then:
VALUE("Look up field value field") * "percentage value field"
I have tested the percentage field with a simple calc and it works. When I try anything involving the look up field it returns error so it is definitely the look up field thats the issue I think
Any hints appreciated 🙂
Solved! Go to Solution.
Oct 16, 2024 04:52 AM
Lookup fields are actually arrays, not numbers nor text. You can try converting it to a number by using this formula:
VALUE({Lookup Field} & "")
This should hopefully work, but note that it will only work if you just have one number in the lookup field.
Hope this helps! If you’d like to hire an expert Airtable consultant to help you with anything Airtable-related, please feel free to contact me through my website: Airtable consultant — ScottWorld
Oct 16, 2024 04:52 AM
Lookup fields are actually arrays, not numbers nor text. You can try converting it to a number by using this formula:
VALUE({Lookup Field} & "")
This should hopefully work, but note that it will only work if you just have one number in the lookup field.
Hope this helps! If you’d like to hire an expert Airtable consultant to help you with anything Airtable-related, please feel free to contact me through my website: Airtable consultant — ScottWorld
Oct 16, 2024 05:51 AM
Thanks for that, it worked 🙂
Oct 16, 2024 06:50 AM
Glad I could help! 🙂