wesleycrusher
Technical User
I apologize for posting daily...
I am grouping and using a formula for the title. The code reads a true/false from the DB and is supposed to determine which title to use and then group by the title. It is grouping fine but only "NATURAL OR PROPANE GAS" is appearing while blanks/whitespace show for the other group. I haven't figured out why it is showing two groups and not three but I suspect the problems are related.
Thanks, you all have been great helping me out this week.
If ({furnace_model.natural_gas_ind}="1" And {furnace_model.propane_gas_ind}="0" Then "NATURAL GAS";
If ({furnace_model.natural_gas_ind}="0" And {furnace_model.propane_gas_ind}="1" Then "PROPANE GAS";
If ({furnace_model.natural_gas_ind}="1" And {furnace_model.propane_gas_ind}="1" Then "NATURAL OR PROPANE GAS"
Else "";
I am grouping and using a formula for the title. The code reads a true/false from the DB and is supposed to determine which title to use and then group by the title. It is grouping fine but only "NATURAL OR PROPANE GAS" is appearing while blanks/whitespace show for the other group. I haven't figured out why it is showing two groups and not three but I suspect the problems are related.
Thanks, you all have been great helping me out this week.
If ({furnace_model.natural_gas_ind}="1" And {furnace_model.propane_gas_ind}="0" Then "NATURAL GAS";
If ({furnace_model.natural_gas_ind}="0" And {furnace_model.propane_gas_ind}="1" Then "PROPANE GAS";
If ({furnace_model.natural_gas_ind}="1" And {furnace_model.propane_gas_ind}="1" Then "NATURAL OR PROPANE GAS"
Else "";