Forum Discussion
- QuickBaseCoachDQrew CaptainFormulas work on field names, not field IDs. They adjust automatically if you change the field name.
IF([my field]>1, true) - EOMDeveleporsQrew CaptainI understand that is the standard. I was wondering if there is anyway to base it on the field id.
Thanks for your reply - _anomDiebolt_Qrew EliteYou can do this:
[_fid_6]
- QuickBaseCoachDQrew CaptainWell, live and learn. Is there ever a benefit such syntax.
- EOMDeveleporsQrew CaptainThe only benefit I can see is, if I can implement it in a way where the field ID number can be looked up in another field. This will make things much more dynamic.
Let's see if Dan can come up with something.
I tried declaring a var by putting:
var text fid = "[" & "_fid_" & [field that has the ID I want to base on] & "]";
but when I put fid in the syntex its taking it as a text instead of a field id indicator...
- EOMDeveleporsQrew CaptainThanks Dan,
I am trying to put instead of [_fid_6] I want to replace the 6 with a field that has the value of the field id number....
Can this be done via script?
Like: [_fid_[field that has the ID I want to base on]]
Thanks again - _anomDiebolt_Qrew Elite
Case([fid],
6, [_fid_6],
7, [_fid_7],
8, [_fid_8],
9, [_fid_9]
) - EOMDeveleporsQrew CaptainThats a good idea but still does not make it fully open since you still need to hard code each field ID
Thanks for the idea.