I have a data table that contains data that was created by someone else. I only take that data and drop it in my table so I can work with it. I realize that the data setup is nonsense. I am just trying to work with what I have.
The table contains 10 fields. 3 of those fields contain values that I want to put in a new field IF the value meets certain criteria. I will call the fields Lvl6, Lvl7, Lvl8, and the new field will be Lvl678.
If the value of Lvl6 = Beatles then Lvl678 = Beatles
If the value of Lvl7 = Kinks then Lvl678 = Kinks
If the value of Lvl7 = Stones then Lvl678 = Stones
If the value of Lvl8 = Doors then Lvl678 = Doors
Etc
I tried to set up a new “rollup” table like this
Lvl6 Lvl7 Lvl8 Lvl678
Beatles Beatles
Kinks Kinks
Stones Stones
Doors Doors
And then I created a query to join the data table with this “rollup” table on Lvl6, Lvl7, Lvl8 so that the resulting data would include the field Lvl678.
I adjusted the Join Properties for ALL rows from the data table and ONLY the rows from the “rollup” table where the joined fields are equal.
So I am getting the data but the field Lvl678 is blank. I tried different join properties with no luck. FYI…I am fairly new to Access. I have been using it for years to store data and pull it out using Excel pivot table setc but I am no expert when it comes to Queries etc.
Thanks for your help.