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
manishtiwary1.390210540410199E12manishtiwary1.390210540410199E12 

How to export Check box value in excel sheet

Hi All,

I have created a custom object. It consist of few Checkbox.
I have also created a visual force page for exporting the detail of of record on by one.(contentType="application/vnd.ms-excel#SalesForceExport.xls" cache="true")
But while exporting into Excel I am not able to get the Check box value.
Request your help.
Grazitti TeamGrazitti Team
Hi,

It's not possible while exporting data from salesforce...

Once you exported you can change 1 or 0 using condition ..

http://www.youtube.com/watch?v=8BTrsRFdbY8

Please check this above video it may helpful to you...


let us know if you have any question .
please don't Forget to Mark this as your best answer if it works fine for you

Regards,
Grazitti Team
Web: www.grazitti.com
Avidev9Avidev9
Probably you can add condition your Export page something like
{!IF(obj.Checkbox__c),1,0}

Jalaj Neelesh ShahJalaj Neelesh Shah

If you try <apex:outputField value ="CheckboxField"/>, it will not show up

Instead of using conditions or formulae, the easiest way is to use <apex:outputText value="CheckboxField"/>

It will display in the TRUE/FALSE format.

Thanks,
Jalaj