Access Query to multiply -


year month  exchange rate   2014           54                                              2015           60    year  amount 2014  5000 2015  6000  

i want multiply amount in every year exchange rate corresponding year.

select currency.[year month], currency.[echange rate], loss.[year], loss.[amount] newamount=currency.[echange rate]*loss.[amount] [currency],[loss]

thank help

newamount calculated field. part comes after multiplication, , there no =. use related fields, primary key , foreign key, ??related_field?? parts. [year] , [month] should separate fields.

select [currency].[year month], [currency].[exchange rate], [loss].[year], [loss].[amount], [currency].[exchange rate]*[loss].[amount] newamount [currency] left outer join [loss] on [currency].[??related_field??] = [loss].[??related_field??]


Comments

Popular posts from this blog

wordpress - (T_ENDFOREACH) php error -

Export Excel workseet into txt file using vba - (text and numbers with formulas) -

Using django-mptt to get only the categories that have items -