Hi Lance,
Do you want the entire row in the GridView inquiry to have the conditional green/orange colour, or just the quantity column? Both of these can be accomplished without HTML.
For the entire row, create a named Row Format (from the Format menu) that uses a simple IF formula:
IF({quantity} >=1, "In Stock Green Style", "ETA 2-5 Days Orange Style")
where "In Stock Green Style" and "ETA 2-5 Days Orange Style" are named Styles in GridView that you create from the Format / Styles menu, creating font styles for size, colour, etc. Of course they can be named differently than this.
For just the specific quantity column, highlight that column in the grid and select Format / Conditional Styles. Ensure the Enable Conditional Styles checkbox is selected, and enter a similar formula:
IF(#>=1,"In Stock Green Style", "ETA 2-5 Days Orange Style")
where # simply represents the current column (ie the quantity).
Is there a particular reason why you wanted to use HTML?
_________________________
Regards,
Softrak Tech Support