function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Kiran kumar 193Kiran kumar 193 

Need Urgent Help

On workflow field update I was trying to update the field by using below formula...but I am getting error. Please help on this issue..

Formula :
TEXT(SBQQ__Account__r.Adaptive_Subsidiary_Address__c)

Error: Incorrect parameter type for function 'TEXT()'. Expected Number, Date, DateTime, Picklist, received Text




 
venkat-Dvenkat-D
If SBQQ__Account__r.Adaptive_Subsidiary_Address__c field already a text field , you dont need to put text function. Directly use SBQQ__Account__r.Adaptive_Subsidiary_Address__c.
Kiran kumar 193Kiran kumar 193
If in that case the field not updating the the value... on Quote I have a field and trying to update the same as Account (Adaptive_Subsidiary_Address__c) field value.

Filter Cretiria : Quote Field NOT EQUAL TO NULL

May I know other way of solution should work this..
Rakesh ARakesh A
I think you started created a formula field with Number data type, but formula returning text.

Please check the formula field- data type and use same tyrpe-function in formula.
Reply the data type you are using, if you are still getting the issue.