I have a gform_pre_submission_filter. I am using it to do calculations among other things and I would like to save the label of one field as part of the value of another field. I know from your documentation that I can get the label of a field using the index of that field like this:
$myText = $form['fields'][3]['label'];
Is there a way to get the label using the field ID instead? My form will be a large multi-page from and getting the field ID will be easier than getting the index.