You need to sign in to do that
Don't have an account?
Incorrect parameter type for operator '/'. Expected Number, received Object
I am trying to create a table in visualforce using a formula and it is giving me this error. Incorrect parameter type for operator '/'. Expected Number, received Object. Here is the formula that I am trying to use
<td align="Center"><apex:outputText value="{!Financial__c.January_Seats_Actual__c / Financial__c.January_Seats_Forecast__c}"/></td>
<td align="Center"><apex:outputText value="{!Financial__c.January_Seats_Actual__c / Financial__c.January_Seats_Forecast__c}"/></td>
What are the data types of these two fields Financial__c.January_Seats_Actual__c and Financial__c.January_Seats_Forecast__c. I guess the second one is a look up, that's why error comes, expected Number, received Object.
Let me know if you need any other help.
Thanks,
Neetu