Add A Value In Entire Row
May 7, 2014
Is there a way to concatenate part of a formula into an entire row?
If I have a formula such as =(8.15*$D$1)*1.35 whereas each line in the row has a different value in the brackets. I need to add + 0.60 in the brackets. But don't want to do it manually for 1200 lines.
View 2 Replies
ADVERTISEMENT
Jun 5, 2008
I want to catch an error and reset the entire code to the very beginning and skip that entire entry. When I use "Next fieldSheetName" I get "Next without For," error 1004. Searches tell me I have an open block somewhere, but that's not true. Removing that statement (and having the loop iterate as normal) has no error at all.
Dim employeeName As String
Dim fieldMax, x, y As Byte ' Counters mostly
Dim workedHours, fieldSheetName As Integer
fieldMax = 204 ' Row number to stop on in the field time sheet
row = 4 ' Row specification for field time sheet. Begin at row 4 to ignore headers
' and start on the first name. This should not be changed!
Col = 3 ' Start at column 3 then increase by one to start going to next time entry
' RESET HERE!
For fieldSheetName = 4 To fieldMax Step 8 ' This is our MAIN loop. It iterates from 0 to fieldMax, which is 204...........
View 9 Replies
View Related
Jul 28, 2014
I'm trying to autofill a series of rows (that are blank) with data from an above row. I want to autofill the row in its entirety, not just filling in blank cells.
For instance (assuming comma is a new column). Colors listed are just a data example. Space between commas indicates a blank cell:
142, RED, GREEN, , YELLOW, , BLACK, PURPLE
(blank row)
142, GREEN, RED, ,BLACK, , PINK, ,
(blank row)
(blank row)
(blank row)
154, YELLOW, BLACK, , GRAY, , PURPLE, RED
(blank row)
(blank row)
So rather than it just completing the task in one desired cell, it would complete the task over the entire spreadsheet. Data spread can be as far as row 500 and column BY, so you can see how a copy + paste or a drag would get monotonous.
Another small example data set:
1,1,1453,0,10,-35
(blank row)
(blank row)
0,0,1448,0, ,-35
(blank row)
1, ,1443,1,3,-36
1,2,1408,2,7, ,
(blank row)
(blank row)
(blank row)
1,2, ,2,7,-39
(blank row)
(blank row)
1,3,1344,1,10,31
And column A will always have data (unless the row is completely blank.
View 1 Replies
View Related
May 17, 2009
This problem has been driving me insane, as I thought it wasn't possible to do in excel however this morning I accidentally pressed a shortcut key on my keyboard and what I wanted, happened.. pity I can't remember how I did it.
How do I highlight an entire row, but remains highlighted when i enter info in the cells until i move down to the next cell? Eg. I click on row"1" so that all cells are highlighted, then while entering info in B:1 - the entire row is still highlighted? This will be very useful in my line of work.
I know there was some information on conditioning formatting, but surely there is a way to do it via keyboard shortcut since i accidentally did it just before.
View 6 Replies
View Related
Oct 9, 2008
I have used the Selection x1Down code to select all rows to the next one with data in but now need some code to deselect the final row (I want to delete all of the blank rows above)
View 2 Replies
View Related
Oct 16, 2008
How do ask if a entire row has been selected in vba, e.g. from column 'a' to 'iv' with no specific row number.
View 5 Replies
View Related
Dec 24, 2007
I have a spreadsheet with thounsands of rows. Some of the rows I'd like to delete because thier values are below 5%. I wrote a VBA code, which primary function is to look for a cell and delete the row if the value is less than or equal to 5%. The code looks fine but I get an "Infinite Loop" anytime the first row value is not true. Below is the code,
-jungleman1
Sub Delete_Zero_Factors()
Dim i As Integer
Dim CUSIP As String
Sheets("Report").Select
Range("B5").Select
i = 0
While Not (IsEmpty(ActiveCell.Offset(i, 0).Value))
CUSIP = ActiveCell.Offset(i, 0).Value
Do While (ActiveCell.Offset(i, 1).Value
View 9 Replies
View Related
Jan 14, 2008
Looking for a formula to establish whether a whole row is empty or not
I try this:
=LOOKUP(2;1/(4:4"");4:4)=NA()
(XL 2007)
But, this works, except when one cell contains NA()
how to make a general expression?
View 9 Replies
View Related
Oct 28, 2008
How would i search the entier worksheet im in, looking at column b only, and delete the entire row if i find the word Date in it.
View 9 Replies
View Related
Jan 19, 2009
Here is the code that I have so far and it works almost the way I want it to. I need to copy over more than just that cell that is being coppied over I need to copy over certain columns in that row.
Private Sub ListBox1_Click()
Dim wksData As Worksheet, wksPayment As Worksheet
'payment sheet
Set wksPayment = Sheet11
Set wksData = Sheet26
Dim LR As Long
LR = wksData.Cells(Rows.count, "A").End(xlUp).Row
Dim varField As Variant
varField = wksPayment.OLEObjects("Listbox1").Object.Value
Range("F6").Value = varField
View 9 Replies
View Related
May 3, 2006
I have looked through the forum at several different copy and Vlookup examples, but I can’t seem to get them to work. I need to compare worksheet(1) (“Portfollio”) in column “B” against Worksheet(2) (“PJS Cap”) column “B” to find any items that the worksheet(2) has that Worksheet(1) does not. Then for these items copy the entire row to the end of worksheet(1). My code gives a runtime error on the copy line
Sub PJSUpdate()
Dim Found As Boolean
Dim I As Integer
Dim J As Integer
Dim LastRowE As Long
Dim LastRowP As Long
Dim InsterRow As Long
LastRowE = Worksheets("PJS Cap"). Range("b65536").End(xlUp).Row
LastRowP = Worksheets("Portfollio").Range("b65536").End(xlUp).Row
InsertRow = LastRowP
For J = 2 To LastRowE ' loops through the portfollio worksheet project list
Found = False 'flag intitated to not found........................
View 2 Replies
View Related
Sep 24, 2006
when i delete the entirerow, it shifts the rows up (which is what I want) but it skips that row when it does.
so if I have 2 blank cells together it will delete the 1st and leave the 2nd blank.
Sub ()
Dim myrange As Range
Set myrange = ("a:a")
For Each c In myrange
If c.Value = "" Or c.Value <= 5 Then
c.EntireRow.Delete
End If
Next
End Sub
View 5 Replies
View Related
Feb 12, 2007
I have recorded a Macro to AutoFill a row in my Excel spreadsheet. The VBA code is very simple and looks like this:
Selection.AutoFill Destination:= Range("D8460:T8460"), Type:=xlFillDefault
Range("D8460:T8460").Select
I thought I would simply be able to click on another row and re-use the Macro, but this doesn't seem to work, as I get the following error message: AutoFill method of Range class failed.
What do I need to change in my code, so that it will work in any row I choose?
View 5 Replies
View Related
Feb 23, 2014
Basically every month I keep a track of my sales in a spreadsheet.
I've attached a sample file : Discrepancy Form.xlsx‎
Sometimes I don't get paid correctly. So rather then filling everything in manually, I want to simply put a "Y" (for yes, there's a discrepancy) or "N" (for no, there's no discrepancy" next to worksheet "Sales" but then have it display the values in worksheet "Discrepancy."
View 9 Replies
View Related
Sep 2, 2009
I'm trying to sort a spreadsheet that has 6 columns with 36 rows total. I want to alphabetize the entire spreadsheet, from A1 to F36 so that A1 is the first of the alphabet and F36 is the last. When I select all the data on the spreadsheet and click sort by ascending, it sorts the columns within themselves instead of within each other.
View 5 Replies
View Related
Jan 4, 2013
I've got spreadsheet I use to control the inventory of my user equipment; who has it, what is it, where is it, etc.
I'd like to "lock" multiple consecutive cells of each row so that they never seperate. This is because they need to be together. However, periodically, I need to move, sort, or rearrange the sheet.
Is there a way I can "idiot proof" this so that these cells never come unlocked from each other?
There is no vba involved (primarily because I don't know how), and no other scripting either.
View 2 Replies
View Related
Jul 17, 2013
The subject summarizes what I want to achieve. I just want to tie an if statement to an entire column, so it will disappear if a statement is satisfied.
View 4 Replies
View Related
Jun 4, 2014
I have a spreadsheet with columns a-v. Column F (titled aging) displays how many days old an issue is. I would like to have a macro that will automatically shade a row light red if the number is less than 90. I don't want the entire row shaded, just the contents of column a-v.
View 2 Replies
View Related
Jul 15, 2014
I need a macro that will search a value in column D (sheet2) that is noted in cell C7 on sheet3. After that it must copy enitre entire row where searched value was found to sheet3, last empty row.
an example:
entered value in cell C7 on sheet 3 is ABC
on Sheet2 column D, value ABC was found in cell 150 (D150) so it has to copy for 150 to sheet3, last empy row.
View 12 Replies
View Related
Aug 2, 2014
I have amended the code but it's for columns. I want this formatting for entire row 4 only and not for columns. Because it's disturbing my program if there is any data using ':' sign then the same formatting is applied which I don't want.
[Code] .....
The ':' sign is not changing to bold. I want to bold ':' sign too.
How to amend the code for entire row 4?
View 5 Replies
View Related
Feb 16, 2014
This part of my code will copy the entire row to another worksheet within the same workbook.
I now need to modify it so that it only copies columns C through G of the row ... not the entire row. how to modify this section of the code?
Just FYI ... "Bdate" and "Edate" come from an entry made into an Input box. (mm.dd.yy) --- ie. 12/18/13 ..... 12/28/13
[Code] .....
View 10 Replies
View Related
Dec 28, 2008
I am trying to use cells.find to find a cell containing "Date". However, it also finds cells with "Start Date" and "End Date" and any other instance of the word date. Is there anyway to make it match ONLY IF the cell contains EXACTLY "Date" and nothing else?
View 4 Replies
View Related
Apr 29, 2009
Range.Resize to an entire row? I have a range variable:
View 2 Replies
View Related
Sep 5, 2009
I have used this code in the past to hide an entire row if between the Range of F3 to 500 the value is zero. What I’m trying to do is change the range from instead of Rows 3 to 500 TO from Row 3 to the last row of data in Column “C”.
What I have is a worksheet which may have as many as 5000 lines of data in column “C” however Column “F” may only have data in 5 of those lines. Instead of printing a 100 pages which may have no relevant information, I only want to print the rows which have values in column “F”
View 2 Replies
View Related
May 3, 2006
I'm working on Outlook 2003 and Word 2000 which are not compatible. I have an
Excel Sheet which are my contacts from Outlook and I want to re-work it to
have only a certain category left.
I need a macro that does
- search a certain column
- deletes the row if it does NOT find a certain condition
Ideal would be a little pop up window to enter which category I want left.
View 9 Replies
View Related
Dec 14, 2011
I want to add a Conditional format to my vba. I've got 2 columns with dates in it and I want to highlight the whole row if the date it greater and less then todays date
I'm looking for
for all active cells
column date 1
=$j2<$L$1 blue for less (this data then tells us thats it's unacknowledged)
column date 2
=$K2<$L$1 red for less
=$K2=$L$1 red is the same
(this data then tells us we need to chase these items)
View 8 Replies
View Related
Jan 21, 2012
Macro to clear contents of entire row if any cell in Range A2:A17 is Empty.
View 9 Replies
View Related
Jan 30, 2012
i was currently gave this code. Sheets("Sheet1").Cells(Rows.Count, "A").End(xlUp)(2) = Me.TextBox2.Text Is there away this can modified to go to the next completly empty row in stead of just "A"? Like maybe A thru L or the entire row would be ok.
View 5 Replies
View Related
Feb 20, 2012
I have an excel sheet where I do a simple price-discount calculation for a product. Please check the file at:
Code: [URL] ........
A2 shows the price, B2 shows the discount and C1-L1 shows the number of units sold. C2-L2 is where I want to calculate the earnings based on the formula I have in C2. I want to apply the same formula to the entire row so that I can quickly see the earning for any number of units sold.
View 3 Replies
View Related
Aug 23, 2012
As per the attached file, the B2 cell representes the person ID and is equal to 2 in the worksheet "Sheet1".
The available macro from that same worsheet will simply create a new entry on the "DB_PLAYERS" worksheet with a new ID without taking on board the cell B2.
What I would like to do is: IF the B2 cell is present in the A:A "DB_PLAYERS" worksheet then It would replace data of the existing ID.
In the current attached file: if you directly open it and click on the "SAVE" button, I would need to have the 3:3 replaced and have the new last name "SMITH" instead of "KELLY" in the cell C3.
View 2 Replies
View Related