Automate Build Of Design Matrix In MS Excel

Jun 15, 2014

A typical Design Matrix is shown in the attached Workbook. There are two domains of Merged Cells that make up the Headings of the Matrix; FRs (Functional Requirements) and DPs (Design Parameters). Given a Hierarchical List of FRs specified by the User, the User would like Excel to bulild the Matrix Hierarchy of FRs automatically (going down the Worksheet). The DP Hierarchy is the same hierarchy, except transposed and reflected across the Worksheet. The attached Workbook has up to seven (7) levels, but the ability to go create up to 10 levels is desired.

View 8 Replies


ADVERTISEMENT

Excel 2003 :: Make A Conditional Design For A Row?

Jan 20, 2013

I'd like to make a conditional design for a row. If a certain cell equals "x" I'd like to color the whole row with grey My version of excell is 2003

View 7 Replies View Related

Excel 2007 :: Will Not Enter Design Mode?

Mar 17, 2014

I am a happy user of Office 2007 and a casual coder. I am familiar with most of the basics of coding and enabling macos. However today, when I attempted to add some code to a workbook, I noticed that Excel would not actually enter design mode. Even though the design mode button will toggle and stay in the "on" mode, I cannot access VB property panel for any controls, even standard contols. Also, I am forced to CTRL-CLICK objects to select them and then am only presented with standard "Format Control" option, not object properties.

One other odd sympton... I can use the macro recorder to add code to a control (a checkbox for example), but when I try to manually add a line of code referencing that object (using the default name), the VB editor does not recognize the object. For example the IDE would not recognize and code a line for the "checked" property of a checkbox control when I check the box while in macro record mode.

These symptoms suggest to me that there is something wrong with the design mode "switch".

This all used to work fine, but it's been a while and many MS updates to my Windows 7/64 machine (now about 4 years old).

View 1 Replies View Related

Excel Spreadsheet Design For Calculating Occurrence In Each Of The 211876 Combination

Jan 29, 2009

I have a dataset storing 6 numbers in a row (where each number range from 1 to 50 and no duplication of number within each row). Totaling there is 1000 rows ....

View 9 Replies View Related

IF Function - Design Generator In Excel That Generates Algebraic Expressions

Feb 27, 2013

I am trying to design a generator in excel that generates algebraic expressions.

For example

In cell B4 the formula is RANDBETWEEN(1,12)
In cells C4:29 I have letters a - z listed in a column one letter per cell.

In a separate cell from which excel reads is the formula:

=B4&CHOOSE((RANDBETWEEN(1,26)),$C$4,$C$5,$C$7,$C$6,$C$8,$C$9,$C$10,$C$11,$C$12,$C$13,$C$14,
$C$15,$C$16,$C$17,$C$18,$C$19,$C$20,$C$21,$C$22,$C$23,$C$24,$C$25,$C$26,$C$27,$C$28,$C$29)

For example one possible result would be 3f.

However if the result was 1m, in a separate cell I want excel to realise that B4=1 and then display it as m.

I've attached the spreadsheet as well : algebra.xlsx‎

View 1 Replies View Related

Excel 2010 :: Macro Design For Serial Number Input

Dec 8, 2011

Excel 2010 O/S XP Macro for serial number input all serial numbers have JTC0. Any VBA code to place in macro to have a cursor appear after the four characters in the macro below?

Example: JTC0| < cursor ready for input

Sub Macro2()
'
' Macro2 Macro
'
' Keyboard Shortcut: Ctrl+s
'
ActiveCell.Offset(1, 0).Select
ActiveCell.FormulaR1C1 = "JTC0"
End Sub

View 4 Replies View Related

Build Windows 8 App Based On Excel Macro?

Feb 24, 2013

I write a excel file (with macros included) to tackle the datas regarding stock market.

The excel file encompasses some information about financial reports, and some functions (macro) like sorting and filtering.

I'm wondering if I can build it as an windows 8 App and put it on the App market.

Or, in other words, can I make a windows 8 App by the functions in Excel ?

Can I do that ?

View 1 Replies View Related

Build Up Excel File For Portuguese Soccer League?

Aug 18, 2014

I am trying to build up an excel file for the Portuguese Soccer League.

It has 18 teams.

Problem 1:

I already figured out a way for the untie criteria to be used during the regular season, that is, for the first 33 days (rounds) - criteria d) to f).

d) Biggest difference between Goals For and Goals Against on all the games they have played;

e) Most wins on all the games they have played;

f) Most Goals For on all the games they have played.

For the last round (34th round), the criteria are more complex. They include the first three criteria that concern the games played between the tied teams.

a) The most points won by the tied teams on the games played between each other;

b) The biggest difference between Goals For and Goals Against between the clubs that are tied on the games they have played between each other;

c) The most goals scored on the away games on the games the tied teams played between each other;

To summarize:

- For the day-to-day standings the criteria that applies is d) to f).

- For the final standingsthe criteria that applies is a) to f).

Problem 2:

I created a sheet named "Evolution" from which I want to extract streaks information: for example current streak, longest win streak, longest draw streak, longest loss streak, longest non-winning streak, longest non-losing streak if possible for home, away and global games.

View 6 Replies View Related

Excel 2010 :: Lookup Formula With 2 Criteria To Build Schedule

May 6, 2014

I have a schedule that covers 3 shifts for the entire month. I have another sheet that is used for crew sign in that I want to auto populate with all the people on that shift for that day.

I need to be able to use 2 different cells on the sign in sheet for reference for the formula (one for the day, and the other for the shift. ex. Day 3rd, shift D). I'm wanting to use an array formula to accomplish this. I've uploaded a stripped schedule as this is for the military and can't have any data on it that pertains to what or who it's for.

BTW our current method is to due it manually for every shift for every day that wastes about 12-16 man hours every week. I have excel 2010 at work currently. Access is out of the question and Macro's/vba may or may not work as security is always being increased on our systems so either a single or multiple formula is the route I'm looking to do that will work the the next few years I hope.

View 6 Replies View Related

Excel 2010 :: Build A String For Criteria1 Field In VBA For Auto Filtering

Oct 3, 2013

Code:

ActiveSheet.Range("$A$1:$AM$14502").AutoFilter Field:=1, Criteria1:= _ "30/06/2013"

When I run the above on my Worksheet to Filter for Rows not equal to 30/06/13 this works fine

I want amend the Criteria1 to a string that is derived off a value in my worksheet I have done this as below where Range("D8").Value is 30/06/13

It is deleting al my data and not keeping the rows with 30/06/13 in it.

Code:

Dim rng As Range
Dim LastQtrDate As Date
Dim LastQtrDateString As String
LastQtrDate = shtControlTab.Range("D8").Value
LastQtrDateString = "" & LastQtrDate

[Code]...

View 2 Replies View Related

From PDF To Excel - Any Way To Automate This Task

Jun 6, 2013

I have a PDF sheet with info laid out like this:

Code:
Peter Paul Mary
Text Corporation
One two three street
Mars, New York 90000 USA
phone: (111) 555-2222
email: tellmewhy@yahoo.com

There are 10 names and addresses like this on each PDF page and the entire PDF file has 50 pages so to manually copy and paste each bit of info into separate cells on the spreadsheet's appropriate cells "Name, Company, Address, State, Phone, Email" e.t.c is too difficult.

View 1 Replies View Related

Automate Data From Excel Into Word?

Sep 23, 2011

how to automate data from excel into word. This vba code takes every sheet from excel and puts it into a word document:

Code:
Sub CopyWorksheetsToWord()
' requires a reference to the Word Object library:
' in the VBE select Tools, References and check the Microsoft Word X.X object library

[Code]....

My problem is that it doesn't style the data into a table, is there any way to do this with the code I have posted? perhaps with a .Style code or something of that sort?

View 1 Replies View Related

Excel 2003 :: How To Automate A Macro

Oct 27, 2011

I am running Excel 2003.I have a spreadsheet with two worksheets, each worksheet has a Refresh button that runs a Data Extract Macro.The Data Extract Macro imports Data from another spreadsheet.I want to have the spreadsheet automatically run my Data Extract Macros for both worksheets at a specific time each week. (Scheduled task) Regardless of whether or not the excel file is open.

View 4 Replies View Related

Excel 2003 :: Mark Row (7 Cell) By Conditional Design Of One Cell

Jan 2, 2014

i'm using excel 2003 and i'm trying to mark 7 cells in a row by conditional design by one of the cell

example : if the date on january? mark all line in yellow, for february mark in red and ect

A B C
528602545 assafsarit@walla.com 01/01/2013

527271005 eti_sh6@walla.com 01/01/2013

[Code] ...........

View 4 Replies View Related

How To Inverse 3x4 Matrix In Excel

May 26, 2012

how to inverse a 3x4 matrix in excel.

I can easly inverse NxN Matrix ( 3x3 ,4x4,2x2)

The matrix I am trying to inverse looks like this

1 1 1 1
3,5 2,5 1,8 2
17,1 11,1 5,1 6

View 3 Replies View Related

OnTime Event To Automate Excel Sheet?

Jun 20, 2014

how to automate my excel sheet i have got.

It has code which when you click the "Save" button it saves the document and then converts a copy as CSV with the same name.

I have been trying to automate this to run every 2 minutes but everything i have tried does not work.

I have tried using OnTime events but again does not work.

View 2 Replies View Related

Excel - Automate Simulation With Crystal Ball Add-in

Aug 14, 2012

I am trying to automate a simulation with the crystal ball add-in. Specifically the simulation will go through a set of workbooks in a directory - run the simulation (monte carlo x1000) and extra the "trial values" data in another spreadsheet.

I have tried to find crystal ball documentation but I'm not having any luck.

View 2 Replies View Related

Creating Adjacent Matrix From Incidence Matrix

Aug 26, 2007

I have a data chart on 200 people with overlapping membership in 20+ groups, represeted as binary (1=member, 0=notmember), for example: ...

View 9 Replies View Related

Return Inverse Matrix Of Large Matrix

Aug 22, 2008

Using VBA, I wish to work out the inverse matrix of a large matrix (100*100), but keep getting the # Num! Error. I am using the minverse function. I have defined variable as "variant", does this give me the same possiblities in terms of number size as the variable "Double"?

View 9 Replies View Related

Formula To Read Two By Two Excel Matrix?

Mar 13, 2014

I was wondering if it is possible to write a formula so that the below table can be read based on the input (in this case start month and cut-off month) and return the value from the table. I have also attached the excel with the data and some examples.

Start Month >>>>
AprMaiJunJulAugSepOktNovDezJanFebMrz
"Cut-off Month

[Code]....

View 3 Replies View Related

Excel 2007 :: Need To Automate Find / Delete Process

Jan 9, 2014

I have two spreadsheets. one contains a master list of computer names. the other contains a list of computer names to be removed from the master list (exception list).

I need to go through the master list and remove any computer names that are on the exception list- for example, if 'computer1' is in the exception list, i have to find and remove 'computer1' from the master list.

The exception list is quite long, and I want to automate this process if possible. not sure how to achieve this.

I'm using Excel 2007 Standard.

View 4 Replies View Related

Excel 2010 :: Code / Button To Automate Certain Row Heights

Dec 6, 2012

Code + Button to automate certain row heights.

1. Starting in row 5 the row height is to "30"...every 17 rows after row5 to have a height "30"...next row 22 is "30" , then row 39 is "30" and so on...
2. All rows in between row height "30" will be with a row height of "11"
3. Can this be associated with a button....
4. where would i place this code.....

Version:Excel 2010

View 9 Replies View Related

Excel 2007 :: How To Automate Emails And Invoices From Data Sheet

Apr 18, 2010

I have the office 2007 Suite.I have a small business, where i sell online mostly. I'm creating a simple spreadsheet using Excel 2007, a workbook that has simple financial statements.

I'm creating a list of customers along with what they order, what they paid, how they paid, (paypal, cheque) etc, The first column is the invoice number, and each is unique to each customer. I add as i get orders. so my list of invoices has the following fields as column headers

Quote:

Invoice Number Customer Name, Paid by Paypal, Paid by Cheque, Amount, Cusotmer email, Customer address, There are more and i won't list them all. Now each time i send an order, i have to fill in the excel worksheet. I then create the invoice separately in Word 2007 which i print to send to the customer with the order in the mail. The third step is sending an email to the customer upon despatch, using Outlook 2007.

I don't want to use accounting software as that is too complicated for my simple little business. What i do want to do however is combine all three tasks instead of having to open different programs and copying and pasting between them. I'd like to be able to add the data to Excel either using a form (ideally) or direct, then i'd like to be able to click on the "customer email" field to send a confirmation email to the customer, and also to be able to have an automated invoice, either in excel or Word, which draws the information automatically for each invoice, so that i only have to print it.

At the moment i'm doing all 3 tasks separately, when i know they can be automated.

1. I have about 20 columns of data for each invoice, ideally i'd like to be able to enter them from a form as it gets cumbersome going through them all in Excel. The form could be either in Word or Excel, which would be easier?

2. Using the invoice number as the unique field, how can i create an invoice that would draw out the required fields from the Excel data automatically, just by clicking a button? I dont' mind using either Excel or Word, whichever is easier, and i do have Access too, but i don't know if i should use that, or not. I don't need to draw any other data. I only want to print invoices and send confirmation emails.

3. After printing the invoice and posting the order to the customer i sent them an email confirming. Again i have to manually enter or copy and paste data in the email, which i know could be automated, if i create a template, and have some fields that are automaitcally populated using the fields in the date already entered.

These fields ususally include the total paid, currency paid, address, name and how many ordered. All of this could be automated, but i'm not sure how to do it.

View 9 Replies View Related

Excel 2010 :: Convert Matrix Data To A List?

Oct 16, 2013

I have been using Excel to record the routine daily issue of items to different groups in a matrix layout, I use a different workbook for each month with worksheets for each group. The matrix takes the form of the item issued being the left hand column and the date issued the top row of the matrix, the quantity issued is recorded at the intersection. Each item can have a different quantity issued on different days. I'm using Excel 2011 for Mac but could use PC Excel 2010. Is there a way to convert the data held in this way to a list? What I'd like to achieve is a list showing the Item, the Quantities Issued and the the Issue dates

View 9 Replies View Related

Excel 2010 :: Value To Cell Based On Horizontal And Vertical Data On Matrix

Jul 30, 2013

I have chart like below. In empty cells I want either 1 or 0 (1 if software is installed and 0 if not).

Excel
Outlook
Powerpoint
Word

Computer1

Computer2

Computer3

Computer4

Computer5

Data of computers and their software are like this:

Computer1
Word

Computer1
Excel

Computer1
Powerpoint

Computer1
Outlook

Computer2
Outlook

Computer2
Excel

Computer3
Outlook

Computer4
Outlook

Computer4
Excel

Computer4
Word

Computer5
Outlook

So called Matrix Lookup was very close, but it finds data FROM Matrix (aka that first table). Is it possible at all?

Excel and Windows version:
Excel 2010 SP1
Windows 7

View 3 Replies View Related

Matrix - Identify Cell Content In Column For Row If Matrix Content True?

Mar 21, 2014

For a table like the one below produced for the sake of example (actual is much much bigger) I want to make it list rows that are true for a certain column for a certain variable in the matrix. So for say water terrain, which types of activity can I do i.e. swimming. Or for Offroad the activites which I can't do i.e. Run and Swim.

ActivityWaterRoadOffroad
Jog nym
Run nyn
Walk nyy
Swim ynn
y=yes
n=no
m=maybe

View 10 Replies View Related

Create Matrix From A Matrix

Apr 29, 2013

Below there are all the information needed to understand my problem.

M(1 to R,1 to C): matrix with R rows and C columns [element known]

M(i,j): elements of the matrix M in position i(row)-j(column) [element known]n

View 3 Replies View Related

Shrinking A Design???

Mar 26, 2009

I have created a design in excel and now need to shrink it to fit on 1 page. Is there any way to do this?

View 2 Replies View Related

Worksheet Design

Jul 28, 2006

I've been reading some threads lately about worksheet design and wanted you advice on something.

I have a worksheet that is about 7.5mb. The details of the worksheet are:

A. 19 total worksheets within workbook, three are visible
B. 1 master worksheet (raw data) that is updated monthly
C. There are 13 worksheets (for each outer office) that pull data from the master.
D. A couple of "Summary" sheets that summarize totals, profits, losses for each area

Situation is this....All code runs fine, but when it's time to save the worksheet it is kind of slow doing so b/c of size.

Would you suggest making a seperate WORKBOOK for the outer offices? I gave this a try yesterday and it worked fine, but I also added code to save once the data was extracted and that part took about 5-6 seconds (I know that's not horrible, but I'm comparing it to previous times).

View 3 Replies View Related

To Design A Production Spreadsheet

Dec 17, 2009

I am going to attempt to design a production spreadsheet which does the following:

1.Orders are put on one page of the spreadsheet (Order Tab) The order is put on listing, Customer, Sizes, Qty etc

2.The user is then able to select an order and if possible I would like a pop up calendar to appear in which the user can then select a production date.

3.One the production date has been selected I want it to open up a new tab if one doesn’t already exist and then cut the information from the order tab and then paste it into the production day.

I have provided a spreadsheet of what I want to achieve but I am unsure if this is possible.

View 14 Replies View Related







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