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
NflitterNflitter 

Web to Lead: grabbing annual revenue from form picklist

Hello everyone, have a small problem here that I am having trouble solving.

On my web to lead form I have a picklist for annual revenue.  However the annual revenue field is not capturing the revenue value selected and I don't know how to go about fixing it.  From my best guess, the salesforce field doesn't like the information type I'm sending it.  I don't know why that would be considering the basic web-to-lead code provided is a simple text input field and the picklist sends information in a simple character string.  I have no problems using a picklist for other fields, only annual revenue.

Here is the code:

<dt><label for="revenue">Annual Revenue</label></dt>
<dd><select name="Annual Revenue" class="width_form">
<option selected="selected" value="">Please Select</option>
<option value="1"> less than 1 Million</option>
<option value="1,000,000">1 Million</option>
                    <option value="2,000,000">2 Million</option>
<option value="3,000,000">3 Million</option>
<option value="4,000,000">4 Million</option>
<option value="5,000,000">5 Million</option>
<option value="6,000,000">6 Million</option>
<option value="7,000,000">7 Million</option>
                    <option value="8,000,000">8 Million</option>
<option value="9,000,000">9 Million</option>
<option value="10,000,000">10 Million</option>
<option value="11,000,000">11 Million</option>
<option value="12,000,000">12 Million</option>
<option value="13,000,000">13 Million</option>
                    <option value="14,000,000">14 Million</option>
<option value="15,000,000">15 Million</option>
<option value="16,000,000">16 Million</option>
<option value="17,000,000">17 Million</option>
<option value="18,000,000">18 Million</option>
<option value="19,000,000">19 Million</option>
                    <option value="20,000,000">20 Million</option>
<option value="21,000,000">21 Million</option>
<option value="22,000,000">22 Million</option>
<option value="23,000,000">23 Million</option>
<option value="24,000,000">24 Million</option>
<option value="25,000,000">25 Million</option>
                    <option value="25,000,001">greater than 25 Million</option>
</select></dd>

I really appreciate any suggestions to help me solve this.
DigitOpticDigitOptic
Your form name and ID tags are incorrect/missing in your code...If you are using the standard lead annual revenue field you need to add the following to you form field tags...
 
<select name="AnnualRevenue" id="AnnualRevenue" class="width_form">