Forum Discussion

RyanStanford1's avatar
RyanStanford1
Qrew Captain
6 years ago

field ID instead of field value in formula field

Is there a way for me to grab the Field ID or fid of a field, and reference it in a separate formula field...

Case:

Have a Rich Text field which is used as a button... when this button is pressed, it passes information to a JS Code page, IE: Record ID and other data... is there a way for this other data to have the Field ID of a particular field?

Currently I have this as the formula rich text field:

"<a class='Launch Vibrant Success' " &
"  data-rid='" & [Record ID#] & "'" &
">Preview File</a>
  • I figured out a work around... as I do an API_DoQuery in my process,

    if I add clist=a in my DoQuery, it gives all fields, so then the rest of my code works properly.