Suggesting a simple approach -
Insert function - =IF('Contact Details'!$A$5>0,A5, "") in cell a5 of CRM Sheet, and copy it across to cells b5 and c5. Fill down for other rows.
>> result : the values for corresponding entry in contact details, viz, referral name, company and work function, will get copied into CRM as soon as a new name is added in contact details. The function ensures there are no ugly zeroes in the sheet, when there is no data. Hope this helps.
Clumsy me... apologies. The correct formula is
=IF('Contact Details'!$A5>0,'Contact Details'!A5, "")
It will work. File uploaded with the formulas copied from rows 5 through 10 for help in understanding.
It Worked! I appreciate your help! Have a great dayYes, it can be done. I gave a primary reference to the first col in Contact details, since as a business process, if you register a new record, you would normally complete the rest of the data. But if you think that is not a case, here is what you can do in the CRM sheet
Cell A5 : =IF('Contact Details'!$A5>0,'Contact Details'!A5, "")
Cell B5 : =IF('Contact Details'!$B5>0,'Contact Details'!B5, "")
Cell C5 : =IF('Contact Details'!$C5>0,'Contact Details'!C5, "")
Copy these down for the rest of the rows... enjoy !
Reg
Sudhir