Hi all,
My question can basically be simplified to asking the difference between a couple ways of writing code, which seem identical to me but one works and one does not.
Adding a field called "User Id" to the table, Excel usually makes this a sum because it is all numbers. However...
Thanks fred. Turns out I may have helped the issue but reducing the level of zoom. For some reason the sheet was always on 120% zoom, and when I ticked it down to 100% the scrolling was a bit smoother. Hope this helps anyone else who runs into this issue.
It doesn't matter if I have 10 other programs open or nothing...scrolling is just choppy. My task manager shows excel is using a fraction of the resources as my internet browser, so just wanted some ideas if using Linked Pictures is known to cause slow scrolling. I can even delete most of the...
I recently created a dashboard and pasted several tables as linked pictures (column and row width just were not allowing me to get where I wanted). It looks great but scrolling is just about terrible sometimes. Usually if i scroll down with the mouse it refreshes every second for a few...
My macro loops through and does the TextToColumns method once for each cell containing text delimiters. ('If cell.Value Like "*|*" Then...'). Then I can transpose the new row. Just wanted to check if I was missing out on array functionality but this is working great. Thanks for the response.
I have been trying to get the results of a TextToColumns function filled into an array, turn it into a vertical array, then fill a column with those values.
Temporarily I have opted to use the function, fill out a horizontal range, then cut and tranpose that range to where I want it. Just to...
This either hides all my worksheets, or causes Excel to crash. Whats wrong with this?
Dim ws As Worksheet
For Each ws In ThisWorkbook.Worksheets
Select Case ws.Name
Case "X", "Y", "Z", "XX", "YY"
Sh.Visible = True
Case Else
Sh.Visible = False
End Select...
Hello all,
I'm making a pretty large workbook with over 20 worksheets, and would like to have different sets of worksheets show depending on which option button is selected on the main sheet. I have done this, but it is very inefficient and difficult to update when new sheets are added...