wykikitoon 20109 Posted December 16, 2022 Share Posted December 16, 2022 Any in here? Link to comment Share on other sites More sharing options...
The Fish 10838 Posted December 16, 2022 Share Posted December 16, 2022 I've used it a fair amount. What's up? Link to comment Share on other sites More sharing options...
wykikitoon 20109 Posted December 16, 2022 Author Share Posted December 16, 2022 Good man Hopefully I am using the correct terminology. I have a filed that I want to copy to several other fields in one go. But when I select the the fields it doesn't do it. I have managed a work around on some by using find and replace but this seems long winded. Link to comment Share on other sites More sharing options...
The Fish 10838 Posted December 16, 2022 Share Posted December 16, 2022 14 minutes ago, wykikitoon said: Good man Hopefully I am using the correct terminology. I have a filed that I want to copy to several other fields in one go. But when I select the the fields it doesn't do it. I have managed a work around on some by using find and replace but this seems long winded. Access is a database platform, it's not like excel. You got screen grabs? Link to comment Share on other sites More sharing options...
wykikitoon 20109 Posted December 16, 2022 Author Share Posted December 16, 2022 So on that if I wanted to changed P01 - P10 SWL(H)kN values to 125. What is the best way to do it? Link to comment Share on other sites More sharing options...
wykikitoon 20109 Posted December 16, 2022 Author Share Posted December 16, 2022 It maybe, access isn't the software I need to be doing this in. Ideally i want it in excel, however I cannot export to excel. Only Access. Link to comment Share on other sites More sharing options...
The Fish 10838 Posted December 16, 2022 Share Posted December 16, 2022 1 minute ago, wykikitoon said: It maybe, access isn't the software I need to be doing this in. Ideally i want it in excel, however I cannot export to excel. Only Access. You can export from Access. Choose External Data, then Excel. 1 Link to comment Share on other sites More sharing options...
wykikitoon 20109 Posted December 16, 2022 Author Share Posted December 16, 2022 Ah cool. Will give it a tinkle. Link to comment Share on other sites More sharing options...
Howmanheyman 33094 Posted December 16, 2022 Share Posted December 16, 2022 2 Link to comment Share on other sites More sharing options...
RobinRobin 11256 Posted December 17, 2022 Share Posted December 17, 2022 5 hours ago, Howmanheyman said: 👍 1 Link to comment Share on other sites More sharing options...
MrBass 2651 Posted December 17, 2022 Share Posted December 17, 2022 On 16/12/2022 at 12:38, wykikitoon said: So on that if I wanted to changed P01 - P10 SWL(H)kN values to 125. What is the best way to do it? Can't tell what you've named that table from the screenshot so you'd need to replace 'TableName' with the actual table name. Also, as I don't use Access, the syntax may need tweaking. For instance you may have to replace the square brackets ([ ]) with single or double quotes. UPDATE TableName SET [SWL (H) kN] = 125 WHERE Mark IN ('P01','P02','P03','P04','P05','P06','P07','P08','P09','P10'); ...or you can do as Fish suggested and put it in Excel where it's better suited. 1 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now