Update Three Tables with Single Form (1 Viewer)

karl009

Registered User.
Local time
Today, 10:25
Joined
Mar 2, 2010
Messages
55
Hi,

I have three tables;

tbl_Exchange_Rates_CI
Currency, RatesCI

tbl_Exchange_Rates_MU
Currency, RatesMU

tbl_Exchange_Rates_PS
Currency, RatesPS

They all have the same data but each have one different felid, is there any way that they can all be updated at the same time?

Thanks
 

ghudson

Registered User.
Local time
Today, 05:25
Joined
Jun 8, 2002
Messages
6,195
Sounds like your data structure is not normalized. Fix that and the rest will be easy.
 

Simba

Registered User.
Local time
Today, 02:25
Joined
Mar 11, 2010
Messages
12
Karl!

I think you could do this way but still I am also on learning stage.

tblExchangeRate
RateType,Currency

tblRateType
id, description

Then if you create the relationship, you might get the values.

Anyone here to tell, if this is correct.
 

karl009

Registered User.
Local time
Today, 10:25
Joined
Mar 2, 2010
Messages
55
Hi,

Simba your idea dose sound good...

Could you link the tblRateType to three felids in the same table, this is why I made three tables.

Each one can use a different currency and when I do calculations the one table with the relationship can influence all the calculations even when one is in Pounds, the other Dollars and another in Euros.

Can be messy...

I will give this a try but I will still need three links between the two tables, will this work?

Thanks...
 

Users who are viewing this thread

Top Bottom