Button Don't Get Deleted Completely
Dec 30, 2008
I have a problem regarding buttons.I have placed buttons on my excel sheet with a regular spacing between them.These buttons are placed dynamically on the sheet and I don't know what will be their names as user can add as many as they like.Now the problem is suppose there are two buttons in the range "A1:d8" and say now i delete the this range (using range("A1:d8").entirerow.delete) then buttons do not get completely deleted .A very thin line size button still remains on the sheet.
How to remove the buttons completely......
View 9 Replies
ADVERTISEMENT
Jun 12, 2014
how to keep a command button in a certain location even if the a row or Column is Deleted or Inserted into the worksheet?
View 1 Replies
View Related
Jun 27, 2013
We have created a macro that basically looks for rows that contain an "H" and hides the row if it does.
Users can add new rows throughtout the year to this spreadsheet. and based on certain criteria, an H or U will be placed in a hidden column which the macro looks at and hides any row it finds an H.
The user has to click on the button that has the macro assigned to it once they have finished working on the spreadsheet.
The problem we're finding is that for users who insert/delete rows, once they click the button it takes up to 15 seconds to run through macro (which is ok). However, users who haven't added or deleted any rows and who click the button, they have to wait upto 5 minutes (which isn't ok) for the macro ro run.
We can't figure out why the macro takes longer to run when no changes have been made?
View 8 Replies
View Related
Jan 14, 2010
I've compiled code to take responses from a user form and insert them into a spreadsheet line by line using
iRow = ws.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row
to find the last used row and move down to the next row to insert new data.
I've just realised though testing, that I've allowed users to skip putting an answer in the first box which writes to the sheet and so I can inadvertantly overwrite answers using the code above.
How do I modify my code to look for the next 'completely blank' row and start to fill new data?
View 9 Replies
View Related
Mar 4, 2009
Is there some vba code that will completly remove all rows after a certain date in A column, the date is in B2. Dates are listed in A column.
When i say completely remove i mean delete, clear colours, remove borders,etc etc
View 7 Replies
View Related
Sep 29, 2003
I've been working with links the past few days and have been experiencing the subject error message. What do I need to do to avoid the error?
View 9 Replies
View Related
Aug 12, 2012
Is there any way to remove the ribbon from view completely. I am aware they allow us to minimize it and I can do that through VBA or Macros however I don't want the people doing the entry to have any access to the ribbon at all.
View 1 Replies
View Related
May 21, 2007
My boss has passed me his laptop that he had been designing a spreadsheet on (Excel 2000). The 'forms' toolbar has completely disappeared. When I right click the area where the toolbars are normally docked it lists every one except forms. clicking customise appears to list a few more menus - but no sign of FORMS. If I click 'new' in customise and type in Forms for the name it tells me 'a toolbar named 'forms' already exists' (so where is it!)
how I can get the toolbar back -
View 9 Replies
View Related
Feb 1, 2014
I am looking for code that fills empty cells found in columns A-F by copying and pasting the value from the cell of the previous row (of the same column) ignoring columns G onwards. The copying/ pasting then should stop when it encounters its first completely blank row.
View 2 Replies
View Related
Jan 27, 2010
How do I adapt code so that it creates a sumif formula for Values in Column E. my current code is: HTML
Range("E65536").End(xlUp).Offset(2, 0).Select
ActiveCell.FormulaR1C1 = "=SUMIF(E:" & Range("E65536").End(xlUp).Address & ",""<0"",E:" & Range("E65536").End(xlUp).Address & ")"
In short, if a value in Column E is < 0, then sum the amount in Column E, and this should give a total of all the negative numbers in column E, but the range parameters seem completely off in my sequence.
View 3 Replies
View Related
Jan 16, 2014
I can't seem to get why one code is giving a correct solution and the other one, not even close. They are both identical but there are some difference.
The program is suppose to pick up about 11 cell values, it then store these cell values into a collection, and randomly picking out the 11 values without repeating until there is no more to pick out.
Here is the code: (the top one doesn't give the correct result, it picks it out of the same ones and the number doesn't seem to store correctly, the bottom codes works as it suppose to work.)
Code:
lastCol = Cells(215, Columns.Count).End(xlToLeft).Column
Dim C As New Collection, I As Integer, rdom As Integer
rowFOUR = 216
colFOUR = 2
'cntHIT = 0
rowtest = 216
[Code] ..........
View 9 Replies
View Related
Jun 16, 2013
I imported a text file into excel 2013, and the format for the date column was M/D/Y. Like this:
Excel Forum 1.xlsx
And then I copied those date and pasted them onto this Excel file:
Excel Forum 2.xlsb
And as you see there seems to be a problem with the dates. So I formatted the cells to also have the M/D/Y format and this is what happened.
As you see the original dates are transformed to something completely different.
View 3 Replies
View Related
Feb 28, 2013
We're setting up a test for candidates in an Excel 2010 workbook and want to get a sense of their native ability to spell. We'd like to disable spell check for the entire workbook. I've looked in Options>Proofing, even tried removing the dictionary, but haven't found a way to completely disable spell check from working. Is it possible to achieve? We'd settle for being able to disable spelling within a textbox.
View 7 Replies
View Related
Jul 3, 2007
Here in our department we made a pretty elaborate macro that takes a report and sorts them out to 17 different sheets in a one workbook. This Macro pulls a file from a specific location on our server and then opens the CSV sorts it out color codes all the important information and saves it back onto the server under you specific initials.
They are four PC's along with our Managers laptop that run this Macro daily.
About 3 weeks ago my Managers laptop stops running the Macro completely and hangs in the middle of the whole thing. Eventually crashing Excel.
We try to remove the modules and re-import them back into the personal macro workbork but this does not work. The Macro's did not change and still fully function on the other four desktops to this day.
I uninstall Office on my Managers laptop and reinstall. Import the Modules again and still hangs up in very same spot it did 3 weeks ago.
I've tried to lower the macro security to the lowest level also and I've still had no luck with this laptop. I don't understand. The Macro's function perfectly on other PC's but will not function on this laptop.
View 9 Replies
View Related
May 19, 2008
I want to catch if the user has deleted a row. There is a need to know when a row is deleted and what the data was in that row. So, what I'm trying to do if a row is deleted is to undo the action and then change the font of all data in that row to have the strikethrough effect. This will enable others looking at the workbook to know that the information in the row existed but is no longer relevent.
So, the code is something like this:If row deleted Then
Application.Undo
Target.Font.Strikethrough = True
End If
View 9 Replies
View Related
Apr 8, 2009
I'm not sure what it's called, but in a workbook that was sent to me, when a cell is selected a text box appears with instructions in them. This is not a normal comment and I found that I cannot select it, right click it, or anything to delete them. They can be annoying as they cover up other data when the cell is selected.
View 2 Replies
View Related
Jul 16, 2014
I'm using the macro below to delete a row, which works but is there a way to keep the row heights for the row that is shifting up?
[Code] .....
View 9 Replies
View Related
Oct 3, 2013
I do a weekly report for my employer. We have our tabs conditionally formatted. We then insert the corresponding arrows to show a trend to the weekly variance. After the week is up I will delete a column and add a column to the end (making it a trended view) and move the arrows by selecting and dragging all of them into its respected week. I then go on to delete several arrows throughout the worksheet. For some reason my file continues to grow in size however I am only keeping a 12 week trend. The arrows are not deleting properly and are sitting in the background, where I cannot see them. I know this bc I did "find & Select" and chose selection pane. I was wondering how I can resolve this problem or maybe delete just certain columns of arrows (objects)? I had 61,000 arrows and shouldn't have more than a couple 1,000.
View 5 Replies
View Related
Feb 26, 2009
I have a macro i would like to run whenever a user deletes a worksheet...
I would like the user to be able click as normal to delete,(ie. right clicking the tab and selecting delete worksheet, or selecting delete worksheet from the menu) but would like to run my macro when they select delete.
I am using excel 07 if that helps, or i could use another version...
My macro will save a copy of the deleted worksheet as xlveryhidden as a backup..
View 9 Replies
View Related
May 3, 2006
Is there a way to protect an excel file from accidently being deleted. I have a shared workbook, and I am concerned it might be deleted from the folder.
View 2 Replies
View Related
Jul 5, 2006
How can I recover a file I deleted? I looked in the Recycle Bin and do not see it.
View 2 Replies
View Related
Sep 13, 2006
How would I write this in vb. If a row or column deleted in sheet1 insert in sheet2 the date it was deleted, the coloumn or row cell name?
View 9 Replies
View Related
Mar 20, 2007
I am working on a workbook in which you can click a button on an index page to create a new sheet in the workbook with the name "meeting" and the number meeting that it is. The new sheet is then added to the index page. I am looking for a way to detect when a sheet is deleted so I can update my index page accordingly. I need to be able to know when a meeting is deleted so I can rename all meetings after that meeting and then update my index.
View 7 Replies
View Related
Apr 20, 2007
I recently downloaded a macro which came with it's own button on it's own toolbar. (I can't remember the developer, but it's called Multihide and simplifies the hiding and unhiding of worksheets).
Now, I've copied the button onto my own toolbar, and tried deleting the toolbar (by the usual method - Cursor over toolbar, R-Click, Customise, highlight toolbar name, delete) which came with the macro, and although it at first looks as though it's gone, when I next restart Excel, it's there again. I find I can't delete the button from the toolbar either, nor delete the whole toolbar.
View 3 Replies
View Related
Jun 6, 2007
I have a spreadsheet that has a formula placed from cells B21 through to AT21. This formula is present in the sheet 95% of the time, but occassionally the user has to enter his/her own value in one of the cells.
How can I check or the user be reminded that he/she has deleted a formula and replaced it with a user defined value. ie a message box(only as a warning) to be displayed just before the workbook is printed. The user should be able to acknowledge the message displayed and carry on.
View 9 Replies
View Related
Aug 31, 2007
While making a spreadsheet, I somehow deleted a much needed column. I didn't notice this until after I had made several changes and 'saved as' many times. Is there any way to retrieve this data? I'm not tech-savvy.
View 4 Replies
View Related
Oct 16, 2007
I have an Excel workbook that I do not want deleted. Is there any VBA code I can do to the document to stop this from happening? which Ic ould turn on/off?
View 4 Replies
View Related
Feb 16, 2014
AMOUNT 42400 is distributed among 6 people (C) in percentage if any of them or any 2 of them is deleted their contribution percentage need to be distributed among other.
I am attaching the example sheet... EXAMPLE.xlsx
View 1 Replies
View Related
May 26, 2014
i accidentaly deleted excel file how can is recovery it
View 2 Replies
View Related
Nov 28, 2007
I have a spreadsheet in excel with scheduling information, each group of data (job) is made up over 2 columns and 6 rows and is in a block (this is so it is easy to view and manouvre)
I have a link in another worksheet that extracts information from the cell if a criteria in the group is met!
At the end of each day I need to delete the columns (B and C, which make up that day) in the schedule.
When I do this all the references in the other worksheet are messed up, even though the next day is moved to columns B and C.
I would like the link to the other worksheet to automaticaly recognise the new values in column B and C as the reference.
View 9 Replies
View Related