How To Print Quantity On Bid Sheets
Advanced Feature - Support May Be Limited
For items that have an availability greater than the default 1
you may want to display those quantities on your Bid Sheets .
Adding the quantity to your Bid Sheets requires making direct edits on the Advanced tab.
How Did I Get Here?
To add the "Quantity" to your bid sheets you would go to Printing Bid Sheets Advanced.

Add the following code to the "Item description format":
{% if Quantity > 0 %}Quantity Available: {{Quantity}}{% endif %}
The new "Item description format" would look similar to this:

You can copy and paste the below into the "Item description format" (replacing the existing code):
{% if BidSheetText <> '' %}{{BidSheetText}}{% else %}{{Description}}{% endif %}
{% if TermsAndConditions %}{{TermsAndConditions}}{% endif %}
{% if Quantity > 0 %}Quantity Available: {{Quantity}}{% endif %}
Click on the checkmark icon to save the changes and you will now be printing the "Quantity Available" if the "Quantity" itself is greater than zero (0
).
Last reviewed: January 2024