I am trying to format the first row of my report as currency (see custom format below), and keep the rest as standard. I found the below code to change one field (Est Contract), but does anyone know how can I change all fields on the report at once?
If CurrentRecord = 1 Then
Me![Est Contract].Format = "$ #,##0;($ #,##0);$ 0"
Else
Me![Est Contract].Format = "#,##0;(#,##0);0"
End If
Thanks,
Mrcost
If CurrentRecord = 1 Then
Me![Est Contract].Format = "$ #,##0;($ #,##0);$ 0"
Else
Me![Est Contract].Format = "#,##0;(#,##0);0"
End If
Thanks,
Mrcost
