Data In Grid To Raw Data

Mar 4, 2014

i've a excel grid with data in rows and columns with values in each pair (row/column).

i need to transform each combination in raw data to process to a database with for ex:

row 1 col 1 value (33)
row 1 col 2 value (5)
row 1 col 3 value (56)

col1
col2
col3
col4

[Code]...

View 1 Replies


ADVERTISEMENT

List Box To Use As Data Grid

Aug 13, 2008

about using list as a datagrid type. I was able to research some samples and applied it on my own, but unfortunately I am missing something again here. The data on the worksheet are not being populated when my range is on the AA column. It works with A1 column but not the far ranges. Im not sure about the limit of range anyway here is the

View 14 Replies View Related

Extract Data From Grid To A List

Oct 3, 2013

Basically, I need to extract data from a grid/table (11 columns wide) and transpose it into a list for use in a pivot table. It like sort of reversing a pivot table to access the original data but I only need 5 of the columns repeated for each occurrence.

I have read many internet sources but they don't seems to fit my needs. Here is a solution from a similar question posted on StackOverflow entitled "How to “flatten” or “collapse” a 2D Excel table into 1D?"

The attached simplified mock-up explains what I am trying to do. I have colour coded the data to understand. The number of rows (10) will always be the same but the number of columns (Branches in this case) can extend for many columns.

View 4 Replies View Related

Pasting Grid From Single Row Of Data

Jun 20, 2014

I want to create a function called PasteGrid(SourceRange As Range, GridHeight As Integer, GridWidth As Integer)

What this will do is take a long single row or column of data and paste it into a grid with a defined GridHeight and GridWidth, I have came up with the below so far:

Code:

Function PasteGrid(SourceRange As Range, GridHeight As Integer, GridWidth As Integer)
Dim rRange As Range
Dim rCell As Range
Dim DestinationRange As Range
Dim GridWidthCount As Integer
Dim GridHeightCount As Integer

[Code]....

Something appears wrong and when following the code when it hits this line:

Code:

Cells(Destination.Row + GridHeightCount, Destination.Column + GridWidthCount).Value = rCell.Value

The function just stops and I'm not too sure why?

View 1 Replies View Related

Automatically Populate 9 Box Grid Using Excel Data

Jul 1, 2014

I'd like to automatically populate a 9 box grid using data from Excel. The number of names for each rating can be anything from 1 to 100 so the size of the grid would need to be adjustable. I would like one table for each function and grade. Attached is what I'm trying to do. In the 'example tables' sheet, I've shown how I'd like the tables to look, but with my live data the tables would be bigger so I'd like to do one table per worksheet (or possibly one function per worksheet - so 3 tables).

View 3 Replies View Related

Grid Lines Disappear When Importing Data

Jan 16, 2007

I sometimes import data in the copy-paste way from completely different sources, eg. a program on the web or whatever, which has arranged the data in a table.

It is often succesful with the data neatly arranged in the spreadsheet in columns and rows and all, but sometimes the gridlines disappear even though 'cell format' is set to 'none' in 'grid lines' and the settings have a mark for 'visible grid lines' and their color is 'automatic'. Only the imported area misses the gridlines.

It is of course possible to set some grey gridlines manually in cell format, but then I get them on the print also and I don't want that.

View 9 Replies View Related

Macro For Sizing XY Grid With Data Table?

Jan 28, 2014

macro to automatically size an XY grid based on user input (see picture - [URL]......)

I want to enter a value in B6 that will automatically create a new grid or edit the existing grid to increase or decrease it depending on the desired grid size.Once the grid has been sized I want to enter a data table into it, therefore the grid would need to be cleared of contents before it could be resized.I think these are the steps that are needed:

- Enter grid size.

- Area (named range based on existing grid values?) is cleared of the data table.

- new rows / columns are inserted with correct XY coordinates shown based on newly entered grid size

- data table written into the new grid

View 5 Replies View Related

Pull Data For A Discrete Month Into A Grid From A Source File Containing A Full Year

Feb 14, 2013

I'm trying to streamline some processes at work and have encountered a bit of an issue.

I have a source file containing a grid of data (9 columns) with a series of dates they relate to down the left side e.g. 13-Feb-2013. This data covers a whole year.

What I want to do is pull through data relating to a discrete month into a grid in a seperate workbook.

I have a feeling that date ranges and possibly some kind of lookup might be useful but am struggling to see how to pull it all together.

View 3 Replies View Related

Performance And Potential Grid (nine Box Grid) - Multiple Values

Oct 24, 2013

I created a table where based in several competences anyone can evaluate performance and potential. My issue comes when based on that result (colum Y in "Perf&Pot" Sheet) I want to export that to a nine box matrix (Sheet 2 "grid" in the attached excel). As could be several people in the same box I wasn't able to com up with a formula that solves this.

Pasta1.xlsx

View 1 Replies View Related

GeoCode Arithmetic: MapsCo Grid To "overlay" GeoLoc Data

Mar 23, 2009

I'm trying to come up with a MapsCo grid to "overlay" geoLoc data. Given the coordinates of a single box within a MapsCo page, I'll can figure out the others once I know how to "from this point, add .5 miles due North and mark another point; from that point, add .5 miles due East and record the next point; etc".

View 5 Replies View Related

Drawing Grid

Nov 26, 2007

I want to have 2 cells where I can enter 2 numbers (length & height) so that a grid can be plotted. For example, a big sheet of paper size is length 30" x height 8", if first number is 10" (length) is entered, it will plot 3 lines across 30" (cos 30" divided by 10" equals to 3) and if I enter 2" (height) on 8", it will then cut it into 4". Attached a file for better understanding.

View 14 Replies View Related

Grid To List

Jun 15, 2009

I'm not worried about the order of the data. What I want is information on turning a grid into a list.

View 4 Replies View Related

Lookup Value From X - Y Grid?

Jan 16, 2013

I'm creating a fairly large risk analysis spreadsheet which uses a fairly standard 5x5 risk matrix.

I need a function or a formula which refers to the score a cell in a 5x5 grid, if given the row and column values, like this (where the columns are probability and the rows are impact):

VL
L
M
H
VH

VL
1
2
4
6
7

[Code]....

View 3 Replies View Related

Grid Header From Cell Value

Jun 29, 2013

Example.xls

Within my attachment, I have a grid of data, Row A are headers, and beneath, various corresponding dates, there are no row headers.

I'm trying to do a lookup so that column header is returned bases on a exact cell value.

Example: inputting 03/03/2014 will return "Week 3"

Week 1|
Week 2|
Week 3|
Week 4

07/07/2013
|14/07/2013
|21/07/2013|
28/07/2013

[Code] ......

View 5 Replies View Related

Linking Grid To Combobox?

Mar 6, 2014

I'm trying to link objects and pricing to groups via a combo box. If the user selects Group A from the combo box and enters Object A on the line item, I want the price associated with Object A and Group A to populate.

Group A
Group B
Group C
Group D

Object A
$1
$3
$5
$7

Object B
$2
$4
$6
$8

Object C
$3
$5
$7
$9

Object D
$4
$6
$8
$10

View 9 Replies View Related

Marking Grid Points

Nov 18, 2008

I have a worksheet ('Matrix') that has a grid that is 40 rows x 40 columns. On another sheet ('Drivers') I have a two columned table where a user is enters two numbers between (you guessed it!) 1 and 40. What I'm trying to do is within the grid, have a "Y" appear on the crossing point as denoted by the table. I've tried a couple of experiments with MATCH, but I'm not getting very far.

I've attached an example document to make this a bit clearer and I've coloured the references on the 'Drivers' sheet to correspond to where they should appear on the 'Matrix' sheet. Sorry if that's a bit garbled. Let me know if you need any clarification.

View 4 Replies View Related

VLOOKUP & Grid Names...

Oct 15, 2008

I'm having an issue with VLOOKUP, I'll keep it short as I don't think I need loads of details because I have done some troubleshooting and believe got to the cause of the problem... I just don't know how to fix it!

View 4 Replies View Related

Toggle Grid Short Cut Key

Mar 9, 2009

This is to inform you that I frequently use toggle grid tool to make my worksheet white/plain,doing this with the help of mouse is eating lot of my time which i really feel anonying/pain.

I would like to have a short cut key for toggle grid which lies in Forms toolbar.

View 9 Replies View Related

Toggle Snap To Grid

Apr 23, 2009

I am trying to modify the code below to toggle the snap to grid on/off or off/on and is giving me an error.

Sub ToggleSnapToGrid(Optional Dummy As Long)
With Application.CommandBars.FindControl(ID:=549)
If .State = 0 Then
.Execute
Else
.State = 1
End If
End With
End Sub

View 9 Replies View Related

Information Transfer To Grid

Mar 23, 2007

I hope someone can help me with this, Ive attached a copy of an example spreadsheet that has the same requirement i need for another one i am creating.

Sheet 1 has the user input area, where the user enters the data they want stored.

All i need is to be able to transfer the data into the correct area on the grid on sheet 3,

View 5 Replies View Related

Expand Cell Grid

Mar 3, 2008

Looking to expand grid in Excel 2003,

View 4 Replies View Related

Insert Shapes That Don't Cover The Grid?

Apr 5, 2009

I have tried to make cartesian coordinates (X)and (Y) using excel 2007. now I want to represent some shapes (circles, squares, triangles, and so one). My problem now is with formating those shapes. I use this path (Insert > Shapes),, but the shape I add cover the grid,
I want (for example) a circle but I need only its circumference, and without covering the grid by its area. the same for other shapes.

View 3 Replies View Related

Isolate Sheet Background And Grid?

Apr 20, 2009

How can I set up my sheets so that the background and grid are isolated, in other words only the background, the grid, and my data shows on the sheet, the rest will be blacked out. I need to email only the certain area of the worksheets.

View 3 Replies View Related

Difficult Formatting With Blank Grid

Jan 15, 2007

I have a huge number of excels that are formatted poorly. They basically look like a checkerboard of data. Looks similar to the illistration below. The X's represent Data and the periods blank cells.

X X X X X . . . . . . . X X X X X . . . . . . . X X X X X
X X X X X . . . . . . . X X X X X . . . . . . . X X X X X
X X X X X . . . . . . . X X X X X . . . . . . . X X X X X
X X X X X . . . . . . . X X X X X . . . . . . . X X X X X
. . . . . . . X X X X X . . . . . . . X X X X X . . . . . . . X X X X X
. . . . . . . X X X X X . . . . . . . X X X X X . . . . . . . X X X X X
. . . . . . . X X X X X . . . . . . . X X X X X . . . . . . . X X X X X
. . . . . . . X X X X X . . . . . . . X X X X X . . . . . . . X X X X X

Except that this goes on for over 100 columns and 30,000 rows. Each block of data is about 4 to 6 sheets printed. My boss does not want to get any blank sheets, only sheets with data on them.

I can see the pages outlined after I Print Preview. But I really don't wat to Ctrl+Click and set the print area thousands of times. Is there a macro that can do this?

I was thinking something along the line of check the range of cells for each page, and if the page has data in it, then set that page's cell range in Print Area.

View 9 Replies View Related

Grid To Determine Interest Rates

Jul 23, 2008

I have a grid to determine interest rates. The are add ons to the rate that are dependent on two factors - the credit score and the Loan to Value percent or LTV, both of which are shown in terms of ranges (720-739, etc). See the screen shot below.

I have already written formulas for converting the score and LTV to the ranges as they appear on the sheet (ie, if you type in a score of 722, the formula converts it to the range of 720-739.

What I need to do is this - when the score and LTV are input and determine which set of add ons come into play, I need the sheet to take those add-ons, identified by an x next to it at the top of the page, and add them to the base interest rate, giving me the final rate. Again, see below to make this more clear.

I've thought of using VLookup, but I don' think that would be applicable here.

What's the best method, and can you give me an example of what a formula might look like?

Loan Level Pricing Adjustments

Base Rate 6.25 6.25

Credit Score 741 >740

LTV 60 740 Cash Out 0 0 0 0.25 0.375 0.375 n/a >740 Investment 1.5 1.5 1.5 2 2.5 2.5 n/a >740 2-unit 0.5 0.5 0.5 0.5 0.5 0.5 0.5 >740 3-4 unit 1 1 1 1 n/a n/a n/a

720-739 all -0.25 0 0 0 0 0 0 720-739 Cash Out 0 0.125 0.125 0.375 0.5 0.5 n/a 720-739 Investment 1.5 1.5 1.5 2 2.25 2.5 n/a 720-739 2-unit 0.5 0.5 0.5 0.5 0.5 0.5 0.5 720-739 3-4 unit 1 1 1 1 n/a n/a n/a

View 9 Replies View Related

Remove Cell / Grid Lines

Dec 31, 2007

I have created a form for my customers. It is attached.

In creating the form, I have merged cells so that the area behind my text boxes will appear clean (no lines).

However, I cannot remove the lines around certain cells see, e.g. range K21.

I would like to make the form as "pretty" as possible for my clients (and it would help me look good to management).

View 4 Replies View Related

Snap To Grid - End Of Line At Intersection Of Cells

Nov 23, 2011

There used to be a function called "snap to grid". What happened to it? I want to draw a line and make it "snap" so that the ends of the line are at the intersections of cells.

View 3 Replies View Related

Conditional Formatting Cells In Large Grid

Jun 25, 2013

I have the attached spreadsheet which makes the question easier to understand. Basically when you read across and down rows and columns, I'd like the intersecting cell to turn red if the horizontal and vertical row columns letters are different. So in the attached B5 is red because B1=A and A5 is B. Where the intersecting cells match in values, the cells will stay white.

I can create a formula to conditionally format one cell to red: =A2<>B1

But I have a large grid and it would mean re-creating each formula for each cell. How to expand it to the whole range?

View 14 Replies View Related

Converting Latitude/longitude To OSGB Grid Ref

Jul 31, 2008

I'm using excel to try and sort by distance a list of wind farm locations from a location i put in.

This should be relitavely straight forward, however there are a few elements that make it more complicated.

I am getting a list of wind farm locations from the internet, the BWEA site. The latitude and longitude data copied over is in text. I'm using Excel '07 but it still requires me to butcher the numbers out of it with several columns of REPLACE formulas, it isn't elegant and may well be wrong.

The second and harder problem is that I have to first convert the latitude and lonitude values into OSGB grid references. So far i have found the OS maps excel converter, but it only converts one value at a time. I need something that will convert all of them at once (i don't want to go through and individually type in each distance).

After that it is possible to use basic trigonometry to find the distance between them and any grid reference i put in.

View 9 Replies View Related

Formula To Find Distance Across Points On A Grid

Nov 22, 2008

Havent used a spreadsheet in ages and i'm having a fun time here. Cant seem to get the right formula for what i need. Here is a brief explanation!

I have a grid (not related to excel) of 999 by 999 squares.
The center is basically co-ords 500|500.
Upper left would of course be co-ords 001|001
Upper right would be 999|001
Bottom left would be 001|999
Bottom right would be 999|999

Now, here is what I am trying to do:

I want to have 3 squares chosen out on a spreadsheet I have made . .

1) here i put in the start co-ords (ie: 500|500)
2) here i put in the destination co-ords (ie: 505|510)
3) This is the fun one!!! ... And where I need the help!

I need a formula to put here that will tell me the number of squares I have to cross to get from one to the other!

View 9 Replies View Related







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