I have several independent currency fields in Gallery1.
If 'Reference ID' is blank I want $00.00 to appear as default
content.
If an amount is entered in the currency field, I'd like the amount
to show as US currency - (example: entering 12345670 would
appear as $123,456.70
If(IsBlank(Edit_PO_Reference_ID_Fld.Text),"$00.00", Value(Self.Text),"$#,###.00")
