Convert Miles to Kilometeres

S

Shazza

Hi

Is there a formula i can use that will automatically convert a number
entered into Kilometers in my Access tables

Ie someone has entered 3 miles and i need to know how many Kilometers it is
as i am not very good with convertions
 
S

S.Clark

There aren't calculated fields in Access Tables, but on a form, you can
calculate it at runtime.

=Nz(txtMiles) * 1.6
 
S

Steve

Hi

Is there a formula i can use that will automatically convert a number
entered into Kilometers in my Access tables

Ie someone has entered 3 miles and i need to know how many Kilometers it is
as i am not very good with convertions

Try running an update query on the table, that will allow you to
convert the existing data in one hit
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top