Putting Borders To Specific Cells

May 31, 2012

In column A of my worksheet I have values starting from A4 as below:

A4-1000
A5-1000
A6-1000
A7-2000
A8-2000
A9-1500
A10-2200
A11-2200
A12-2200
A13-2200
and so on till A10200.

What is want is to put thick box borders for similar values using a macro. For e.g. i want to put the borders to first 3 cells together as these are of same value 1000, then it has to be put to A7 & A8 (Value - 2000), then for A9 alone, then for A10 to A13 together till i have values in column A.

View 5 Replies


ADVERTISEMENT

Putting Specific Value In Blank Cells In Same Row Based On Value In 1st Cell?

Jul 18, 2013

i am trying to Put a specific value i,e "NO Deliveries" in blank Cells in the same row based on value in 1st cell of the Row which has a fixed value . note:the columns and rows are dynamic for example: I want to put the value "no Deliveries" in cell C because its blank.

A B C D

% of Availability
0.00%

80.00%

View 9 Replies View Related

Borders Around All Cells In A Range

Nov 26, 2013

What I'm trying to do is put top&bottom borders on ALL cells in a range, not just the margins of the selected area. See spreadsheet below for explanation if required.

Surely there must be a way to do this through Excel menu, tools and whatever.

Alternatively, this could be solved if I knew how to select all rows in a spreadsheet (not Select All), because if I select rows one by one it will obviously apply the borders correctly. Is there a way to select multiple rows then?

View 5 Replies View Related

VBA Counting Cells With Borders

May 19, 2014

A cell on sheet1 needs to count the number of cells on sheet2 (D3:D31) that has a complete (top, bottom, left and right) border. This is my best shot at it.

[Code] .....

Sheet1 cell I input =CountBrds('sheet2'!D3:D31)

One issue, on sheet2 for example cell D4 is merged with E4 and F4 as is every even cell in the D column down to row 30. Not sure if that throws a wrench in things or not.

View 4 Replies View Related

Conditional Formatting Using Borders Between Unlike Cells

Feb 7, 2013

What is the formula to plug in a THICK border between unlike cells?

Example:
A B C
1 TOM BROWN CO. 2010 Sales $800
2 TOM BROWN CO. 2011 Sales $720
3 JANE SMITH CO. 2010 Sales $300
4 JANE SMITH CO. 2012 Sales $100
5 JANE SMITH CO. 2013 Sales $250
6 ABC CO. 2010 Sales $100

View 1 Replies View Related

Putting Two Cells Together With 0

Mar 26, 2014

I have a cell in A1=(str identification is = ",) and in B1=(2). In C1 I want it to equal (str identification is = ",02) In C1 I have A1&B1

View 4 Replies View Related

Putting Data From Several Cells In One Cell Together

Oct 10, 2011

I have a sheet with 2 colomns: client number and document number, as follows:

Client number Document number
1234 100012
1234 100042
4321 102233
4321 249123
4321 533213
4567 134123
7890 123451
7890 125675
7890 357353

I need to have a unique client numnber on 1 row with all his documents in one cell, as follows:

client number: document number

1234 100012, 100042
4321 102233, 249123, 533213
4567 134123
7890 123451, 125675, 357353

View 5 Replies View Related

Separating Data With Spaces And Putting In Two Different Cells

Aug 18, 2009

I need to take data from a cell that has a space "cherry banana", and make it into two cells "cherry" and "banana". I want to duplicate my line on which the data resides, if possible.

What I have is a sheet like this:

View 5 Replies View Related

VBA - Putting A Border Around Cells That Arent Empty

Nov 3, 2008

I am trying to Put a border around cells that arent empty. Is this possible?

View 11 Replies View Related

Select Certain Cells Based Upon Condition And Putting In Sheet 2

Mar 25, 2009

I have attached the file with this post.

What I like a macro to do is:

Whenever a 'D' ends in column "Step 5" the last value of 4 cells to the left to be put in sheet 2 in reverse order.

View 5 Replies View Related

Subtracting Two Arrays Of Data And Putting The Result In Some Cells

Dec 11, 2009

I was trying to subtract two arrays of data and putting the result in some cells but with no success unfortunately. I'm relatively new to VBA and I'm just starting now to make calculations with arrays so excuse my little knowledge. The arrays that I'm trying to subtract are from row 1 to 250 and m and n variables have the number of the columns. Here is my routine:

View 3 Replies View Related

Populate A Cell Based On Conditions Of Other Cells W/out Putting A Formula In The Cell

Oct 10, 2009

Is there a way to make a cell populate certain text based on conditions of other cells without putting the formula in the cell you want to populate. So that someone could type other text into the cell if the conditions were not met?

View 14 Replies View Related

Macro To Copy Specific Cells From Row From Source & Stop When Next Row Cell = Specific Value

Nov 7, 2008

I have a protected template and unprotected source worksheets - - - what I would like to happen is for the macro to start and if the source worksheet cell B3 equals "Report Total" then stop - otherwise copy template worksheet then copy 6 specific cells from the source to paste values to specific cells on the newly created worksheet (B_ to C7, D_ to I7, E_ to C9, F_ to K9, A_ to C11, M_ to K11 and then K13=F13-30)

After that then start all over again unless the next row’s cell (B4, B5, B6, . . .) is "Report Total" then stop - - - the row count could be from one to a couple hundred.

Here is what I have so far but I know that with each copy the name will change and as it goes down the source file each row will change and I also need help with that.

Sheets("ee template").Copy After:=Sheets(3)
ActiveSheet.Unprotect
Selection.ClearContents
Range("I7").Select
Selection.ClearContents
Range("C7").Select
Sheets("source").Select
ActiveCell.Offset(0, -11).Range("A1").Select

View 9 Replies View Related

Specific Cells Populate With Specific Numbers When A Value Within A Range Is Entered

Oct 9, 2009

Here is what i am trying to achieve. If the date 2/20/2010 is located at F53 & the cell next to it at H53 is populated with a number between 1 & 16, then i want the cell at J11 (42 rows further up) to auto populate with the number 1. When this occurs the cells beneath this, from J12 to J52 should also auto populate with the with consecutive numbers from 2 to 42. Would also like to see the cells with numbers 1 to 28, automatically format to orange & the cells containing numbers 29 to 42 automatically format to yellow. I plan to have this condition repeat several times later in the year, at dates that are to be decided. When these dates are decided i want to be able to enter a number from 1 to 16 & next to the date & all of the above automatically occurs.

View 14 Replies View Related

Borders Around The Codes

Mar 22, 2007

I have a spreadsheet containing data in coloumns A to L.

Where all the codes in column B are the same then a border must be placed around all the codes that are the same i.e the border must start in Column A and end with column L.

provide me with the code the will put borders around the codes in column B that are the same ...

View 9 Replies View Related

Missing Borders

Oct 2, 2008

I have created a 4 page chart in landscape with text in each of the 4 columns in the chart.

When I looked at it in print preview the chart did not fill the page and so to widen the last 2 columns I dragged them over to the right hand margin. I am still definitely within the right hand dotted line showing the margin limit.

The problem is that I cannot now put a border line down the extreme right hand column. Every time I click on any of the border instructions in the Font tab nothin appears on the right hand side of the box.

View 9 Replies View Related

VBA For Shading And Borders

Feb 4, 2010

I am trying to write vba code that will highlight the row in the range if a field is over a certain percent. The column number won't change but the number of rows will. I'd also like the code to automatically work on all tabs of the workbook when a button is clicked.

Data Info:
Currently there are 4 tabs, but can have more/less
Columns used are A:O
Data for shading starts at A3 and should go to however many rows have data and ignore blank rows
Formula should be if data in column E is over 10.00% then the data in that row A:O should be shaded in the color off yellow & have black thin orders
If the data in column E is not over 10.00% then the data in that row should not be shaded but still have thin black borders.

View 9 Replies View Related

Paste Without Borders

Aug 19, 2007

Is it possible to stop excel from pasting border formating with cell data other than to select paste special-all except borders?

View 5 Replies View Related

Highlight Specific Cells In Row If >1 Contains Specific

Apr 30, 2007

I'm trying to use a conditional format on a range of cells so that if there is more than 1 "A" contained in any given row, the cells containing the "A"s are highlighted (e.g. red)

I've tried:
=COUNTIF(B2:K4,"A")>1

but it doesnt work & now I'm stuck.

View 9 Replies View Related

Borders Macro Don't Line Up

Jan 22, 2014

The attached file works with 3 Drawers and 3 Doors but if I use 2 Drawers and 2 Doors the Borders do not line up. I think the Drawers are right the Doors appears to be the problem.

Same thing happens with 3 drawers and 4 Doors. It has and extra border on the right side.

See Attached : ozgrid cabinet error.xlsm

Also I would like for the Measurements to be in the cell to the right of the left hand border and center across each of the sections.

Change B3 and B4 to 2 then click draw. 3 and 3 work 3 and 4 don't but 4 and 4 does.???

View 2 Replies View Related

Removing Borders For Printing

Jul 6, 2009

I want to remove some cell borders for printing so that on paper it will look like 2 separate tables (ie, I want a space between the 2 tables). I have tried removing the borders and changing the colouring to white but they still show.

View 5 Replies View Related

Conditional Formatting - Borders

Jul 9, 2009

i am trying to do the following but having trouble getting my head around it!

if a2=0 then b2:b13=border

View 10 Replies View Related

How To Change Thickness Of Borders

Aug 20, 2013

I need to change the thickness of the borders line but I couldn't find out how.

View 6 Replies View Related

Remove Borders Below Last Row Of Data?

Jun 2, 2014

Trying to select all cells below the last row of data based on column B and remove borders.

So far I have this.

[Code] .....

View 4 Replies View Related

Remove Userform Borders?

Aug 1, 2009

I am using a user form to display a splash screen. In the user form, I have a picture that is being displayed as splash screen for 5 seconds and then it disappears.

I only want to display the picture in the splash screen.

I want to to remove the following three items from the user form:

1 - remove all borders
2 - remove the menu/caption bar
3 - remove the "x" button that allows user to close form.

View 7 Replies View Related

Select Last Row And Format Borders

Apr 29, 2009

This piece of code is run from a form when the user click OK. It dumps the data the user filled in on the form, below the last row on the sheet.

View 2 Replies View Related

Using Borders Where Data Is Similar

Apr 17, 2007

I have a spreadsheet that has descrptions in column D. Where the descriptions are the same ,

I need the VBA code that will do the following:

1) Sort the data by columns C (descending), G (ascending) & E (ascending)

2) Putting a border around all the data where the decriptions are the same
i.e from column A to Column I beginning from row 2

I have attached a sample file for ease of reference....

View 9 Replies View Related

Put Thin Borders In Columns ..

Jun 27, 2009

i have just recorded a macro to put thin borders in columns L and M, but it needs cleaning, ...

View 9 Replies View Related

Printing Cell Borders

Jun 20, 2006

I have designed a form with Grey horizontal borders.

When I print to my HP LaserJet 2420, the borders are black.

I have other forms with Grey borders where the borders print Grey.

I have not chosen to print Black and White in Page Setup.

How do I correct this?

View 6 Replies View Related

Dynamic Range Borders Via VBA

Aug 16, 2006

With Range("A12", Range("E65536").End(xlUp))
With .Borders(xlEdgeLeft)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
With .Borders(xlEdgeTop)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
With .Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.Weight = xlThin......................

It is supposed to border data from columns A to E for all rows where data exists in column A. (like a dynamic range). How would I change the dynamic reference I have now?

View 5 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved