• mutu26
  • NEWBIE
  • 0 Points
  • Member since 2011

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 2
    Replies

I have a VF page using the Contenttype set to application/vnd.ms-excel.  The file opens correctly using Excel 2010 but I receive an "Unable to Read File" using Excel 2002.  Different users have different versions of Excel.  I have some older versions of this same VF page Excel files and Excel 2002 can open those files.  The newer version of the VF page has row color coding (partial code below).  Are there any HTML limitations using older versions of Excel causing the file not being able to be read?

 

 

 <apex:repeat value="{!wOList}" var="o">
 <apex:variable value="{!cnt+1}" var="cnt"/>
            
   <tr class="{!IF(mod(cnt,2) == 0,'OppEven','OppOdd')}"> 
            
     <!-- LIGHT GREEN -->
       <td style=" background-color: {!IF(mod(cnt,2) == 0,'lightgreen','')}; color: black;">
         <apex:outputText value="Opportunity"/>
       </td>
       <td style="background-color: {!IF(mod(cnt,2) == 0,'lightgreen','')}; color: black;">
          <apex:outputField value="{!o.o.District__c}"/>
       </td>

     <!-- LIGHT BLUE -->               
        <td style="background-color: {!IF(mod(cnt,2) == 0,'lightblue','')}; color: black;">
          <apex:outputLink value="/{!o.o.id}">{!o.o.Opportunity_Number__c}</apex:outputLink>
        </td>

 

 

 

  • November 12, 2010
  • Like
  • 0

Is anyone else having a problem with the outlook 2010 (Salesforce to Outlook) addin? I installed it on a new machine Window 7 32bit, with office 2010. It works well, but after a while, it just freezes my outlook program ( "Not Responding"). When i disable to addin, Day 2, I have experienced no Outlook crashes.