I have rows of data in a VB DataGrid with the following fields
Product, Price/Unit, # of Units.
I want to be able to display these fields plus an extended value to calculate the Price/Unit * # of Units.
This seems like it should be easy, I'm just getting a little mixed up with the Syntax.
Any help would be appreciated.
Thanks in advance
tattoo
You are writing the syntax yourself.select Product, PricePerUnit, NumberOfUnits, PricePerUnit * NumberOfUnits as TotalPrice
from ...|||Works perfectly thank you
No comments:
Post a Comment