I want to display the same records x number of times based on the value of a field.

  • Thread starter Thread starter david.isaacks
  • Start date Start date
D

david.isaacks

I want to display the same records x number of times based on the value
of a field.

[StatusJuly] has three values that could be entered into it. New,
Normal, or At Risk.

I want to run a report that list all the records based off of what
thier [StatusJuly] is.

New = 8
Normal = 4
At Risk = 8



Report

[FullName] [StatusJuly] [AssignedMonitor]


thanks,
David
 
A simple method would be to create a table
tblStatusCount
=============
[Status]
New
New
New
New
New
New
New
New
Normal
Normal
Normal
Normal
At Risk
At Risk
At Risk
At Risk
At Risk
At Risk
At Risk
At Risk

Add this table to your report's record source and join the Status field to
StatusJuly. You should get multiple copies of each record.
 
Thank you, that worked for my needs.

David
Duane said:
A simple method would be to create a table
tblStatusCount
=============
[Status]
New
New
New
New
New
New
New
New
Normal
Normal
Normal
Normal
At Risk
At Risk
At Risk
At Risk
At Risk
At Risk
At Risk
At Risk

Add this table to your report's record source and join the Status field to
StatusJuly. You should get multiple copies of each record.

--
Duane Hookom
MS Access MVP

I want to display the same records x number of times based on the value
of a field.

[StatusJuly] has three values that could be entered into it. New,
Normal, or At Risk.

I want to run a report that list all the records based off of what
thier [StatusJuly] is.

New = 8
Normal = 4
At Risk = 8



Report

[FullName] [StatusJuly] [AssignedMonitor]


thanks,
David
 

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