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
Samuel JohnsonCBESamuel JohnsonCBE 

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>
Neetu_BansalNeetu_Bansal
Hi Samuel,

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