May 28, 2020 01:15 PM
Hello Airtable Community.
I’m actually not sure if the subject is the right for this question but it’s the closest I could think of.
I created a formula field to autofill out instagram.com prior to a profile name to save me re-typing it every time. (Thanks to Scottsworld for helping me with that)
"https://www.instagram.com" & {profilename}
Is there a way to only show instagram.com if a profilename is not empty? ie nothing will show in the formula field if profilename is empty. Hope this makes sense!
Solved! Go to Solution.
May 28, 2020 01:28 PM
Adjust your formula like so: IF({profilename}, "https://www.instagram.com" & {profilename}, "")
May 28, 2020 01:28 PM
Adjust your formula like so: IF({profilename}, "https://www.instagram.com" & {profilename}, "")
May 28, 2020 01:40 PM
This made me SOOOOO Happy!!! Thank you soooo much!!! I can’t tell you how much this has helped me.