I need help with a formula. I am trying to concatenate two fields and also add an IF statement.
It doesn't seem to be working. This is what I have so far:
Name&"" &RecordType.Name& ""&
(IF(NOT(ISBLANK(Report_Date__c)), Report_Date__c, TODAY())
2 answers
Try this =
Name + "-" +
RecordType.Name + "-" +
TEXT(BLANKVALUE(Report_Date__c, TODAY()))