How do I input more than one number in a single cell in access?

  • Thread starter Thread starter Guest
  • Start date Start date
Tom,

To be honest, Access doesn't have "cells". And it is not normal
practice to enter more than one piece of information into the same field
in a single record. Can you please give an example of what you mean?
 
Use the big white box to give us some details.

Access database has records (sort of like spreadsheet rows)
Each record has fields, sort of like spreadsheet cells.

Do you mean something like 124 878 in one field? If so you can do that
by making the field a text type, not a number type. Of course you will not
be able to use the data in a mathematical calculation.
 
format(mynum1,"whatever") & " " & format(mynum2,"whatever")


I have used this to get two values into a crosstab value field e.g.
Number_of_members & percentage

It is not usual practise
 

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

Back
Top