I'm using CR 9 and Oracle
I make alot of reports where the user wants the flexibility to dump the report to Excel. This is ok but I find I'm constantly creating formulas like
If IsNull({PURCHASE_PART_SUPPLIER.LIST_PRICE})
then "-"
else {PURCHASE_PART_SUPPLIER.LIST_PRICE}
so that Excel doesn't do funky things with blank fields - usually causes data to shift over a column. It's time consuming so I'm wondering if there is something I'm missing that would make this unnecessary.
Also, I find I have to line the fields up exactly next to each other to avoid Excel adding additional narrow blank columns. Can this be avoided?
Thanks.
I make alot of reports where the user wants the flexibility to dump the report to Excel. This is ok but I find I'm constantly creating formulas like
If IsNull({PURCHASE_PART_SUPPLIER.LIST_PRICE})
then "-"
else {PURCHASE_PART_SUPPLIER.LIST_PRICE}
so that Excel doesn't do funky things with blank fields - usually causes data to shift over a column. It's time consuming so I'm wondering if there is something I'm missing that would make this unnecessary.
Also, I find I have to line the fields up exactly next to each other to avoid Excel adding additional narrow blank columns. Can this be avoided?
Thanks.