Published on 07/07/2018 9:56 pm
9 SMARTER Tips on how to USE EXCEL FOR ENGINEERING

como calcular o custo de uma obra
As an engineer, you are possibly making use of Excel almost on a daily basis. It does not matter what market you will be in; Excel is implemented All over the place in engineering.
Excel can be a tremendous program that has a great deal of fantastic possible, but how do you know if you are working with it to its fullest abilities? These 9 tips will help you start to get probably the most from Excel for engineering.
one. Convert Units without any External Tools
If you’re like me, you almost certainly perform with diverse units daily. It’s a single on the good annoyances from the engineering existence. But, it’s turn into a great deal less annoying because of a function in Excel that may do the grunt work to suit your needs: CONVERT. It is syntax is:
Prefer to understand a lot more about superior Excel techniques? Observe my 100 % free education only for engineers. Inside the three-part video series I will show you the right way to solve complicated engineering challenges in Excel. Click here to get began.
CONVERT(quantity, from_unit, to_unit)
In which number is definitely the worth you choose to convert, from_unit is the unit of variety, and to_unit could be the resulting unit you need to obtain.
Now, you will no longer really have to head to outside tools to discover conversion variables, or challenging code the variables into your spreadsheets to cause confusion later. Just allow the CONVERT perform do the function for you personally.
You’ll find a complete listing of base units that Excel recognizes as “from_unit” and “to_unit” right here (warning: not all units can be found in earlier versions of Excel), but you may also utilize the function numerous occasions to convert much more complicated units that are common in engineering.

2. Use Named Ranges to make Formulas Less difficult to know
Engineering is demanding ample, with out attempting to figure out what an equation like (G15+$C$4)/F9-H2 signifies. To get rid of the soreness linked with Excel cell references, use Named Ranges to create variables that you just can use in the formulas.

Not merely do they make it simpler to enter formulas right into a spreadsheet, nevertheless they make it Much easier to comprehend the formulas whenever you or another person opens the spreadsheet weeks, months, or many years later.

One can find a few different ways to make Named Ranges, but these two are my favorites:

For “one-off” variables, select the cell you prefer to assign a variable identify to, then type the title of your variable while in the title box in the upper left corner on the window (beneath the ribbon) as shown above.
If you prefer to assign variables to numerous names at after, and have currently incorporated the variable name within a column or row up coming to the cell containing the value, do that: To start with, pick the cells containing the names along with the cells you'd like to assign the names. Then navigate to Formulas>Defined Names>Create from Variety. Should you choose to discover alot more, you possibly can study all about creating named ranges from selections right here.
Do you want to understand all the more about sophisticated Excel procedures? View my zero cost, three-part video series only for engineers. In it I’ll show you how to solve a complex engineering challenge in Excel applying some of these techniques and much more. Click here to get started.
3. Update Charts Instantly with Dynamic Titles, Axes, and Labels
To make it uncomplicated to update chart titles, axis titles, and labels you are able to website link them directly to cells. In the event you require to generate a great deal of charts, this may be a serious time-saver and could also potentially enable you to refrain from an error once you overlook to update a chart title.
To update a chart title, axis, or label, to begin with generate the text you need to include in a single cell for the worksheet. You can actually make use of the CONCATENATE perform to assemble text strings and numeric cell values into complex titles.
Upcoming, select the component on the chart. Then head to the formula bar and variety “=” and pick the cell containing the text you choose to utilize.

Now, the chart part will automatically when the cell worth changes. You can get imaginative right here and pull all types of info into the chart, without the need of obtaining to be concerned about painstaking chart updates later on. It’s all completed automatically!

4. Hit the Target with Goal Seek out
Ordinarily, we set up spreadsheets to calculate a outcome from a series of input values. But what if you’ve done this in a spreadsheet and wish to understand what input worth will obtain a sought after result?

You might rearrange the equations and make the old consequence the brand new input as well as the outdated input the new outcome. You may also just guess in the input until you reach the target result.
Thankfully however, neither of these are important, as a result of Excel has a tool called Objective Seek out to try and do the work to suit your needs.

Initially, open the Objective Seek out tool: Data>Forecast>What-If Analysis>Goal Look for.
From the Input for “Set Cell:”, choose the result cell for which you already know the target. In “To Worth:”, enter the target worth.
Finally, in “By shifting cell:” choose the single input you'll want to modify to change the end result. Pick Okay, and Excel iterates to search out the right input to realize the target.
five. Reference Data Tables in Calculations
One in the elements that makes Excel an outstanding engineering device is that it truly is capable of handling each equations and tables of information. And you can combine these two functionalities to create impressive engineering versions by searching up information from tables and pulling it into calculations.
You are possibly by now acquainted using the lookup functions VLOOKUP and HLOOKUP. In lots of situations, they could do every thing you need.

Then again, in case you demand a great deal more flexibility and better handle more than your lookups use INDEX and MATCH as a substitute. These two functions permit you to lookup data in any column or row of a table (not only the initial one), and you also can handle no matter whether the value returned would be the subsequent largest or smallest.
You may also use INDEX and MATCH to perform linear interpolation on a set of information. This really is performed by taking advantage of your flexibility of this lookup way to search out the x- and y-values at once ahead of and after the target x-value.

6. Accurately Match Equations to Information
One more way to use current data inside a calculation should be to match an equation to that data and make use of the equation to determine the y-value to get a provided worth of x.
Many of us know how to extract an equation from data by plotting it on a scatter chart and including a trendline. That is Ok for finding a brief and dirty equation, or fully grasp what type of perform top fits the data.
Then again, for those who would like to use that equation in the spreadsheet, you’ll need to enter it manually. This will end result in mistakes from typos or forgetting to update the equation once the data is transformed.
A much better way for you to get the equation is usually to make use of the LINEST perform. It’s an array perform that returns the coefficients (m and b) that define the most beneficial fit line by a data set. Its syntax is:

LINEST(known_y’s, [known_x’s], [const], [stats])

In which:
known_y’s will be the array of y-values in your data,
known_x’s stands out as the array of x-values,
const is often a logical worth that tells Excel irrespective of whether to force the y-intercept to become equal to zero, and
stats specifies regardless if to return regression statistics, such as R-squared, and so on.

LINEST could very well be expanded beyond linear information sets to carry out nonlinear regression on information that fits polynomial, exponential, logarithmic and energy functions. It may possibly even be utilized for a variety of linear regression likewise.

7. Save Time with User-Defined Functions
Excel has numerous built-in functions at your disposal by default. But, for those who are like me, there can be lots of calculations you finish up carrying out repeatedly that really don't have a specific perform in Excel.
These are perfect situations to create a User Defined Perform (UDF) in Excel working with Visual Primary for Applications, or VBA, the built-in programming language for Workplace solutions.

Really do not be intimidated while you go through “programming”, although. I’m NOT a programmer by trade, but I use VBA all the time to increase Excel’s abilities and conserve myself time.
When you prefer to know to create User Defined Functions and unlock the massive probable of Excel with VBA, click right here to read about how I produced a UDF from scratch to determine bending pressure.

8. Perform Calculus Operations
When you assume of Excel, you could not think “calculus”. But if you have tables of information you may use numerical evaluation systems to determine the derivative or integral of that data.

These very same simple solutions are used by more complicated engineering software package to complete these operations, and they are painless to duplicate in Excel.

To determine derivatives, you're able to utilize the either forward, backward, or central variations. Every of these procedures employs information from the table to determine dy/dx, the only distinctions are which information factors are made use of for your calculation.

For forward variations, utilize the information at stage n and n+1
For backward differences, use the information at factors n and n-1
For central variations, use n-1 and n+1, as proven beneath


If you have to have to integrate information inside a spreadsheet, the trapezoidal rule works effectively. This solution calculates the region beneath the curve amongst xn and xn+1. If yn and yn+1 are different values, the area forms a trapezoid, therefore the identify.

9. Troubleshoot Undesirable Spreadsheets with Excel’s Auditing Equipment
Every single engineer has inherited a “broken” spreadsheet. If it is from a co-worker, you are able to normally request them to fix it and send it back. But what if your spreadsheet comes from your boss, or worse but, someone that is no longer together with the provider?

Sometimes, this could be a genuine nightmare, but Excel gives some tools which could allow you to straighten a misbehaving spreadsheet. Every of these tools could be present in the Formulas tab of the ribbon, from the Formula Auditing area:

As you can see, there are actually a number of various resources right here. I’ll cover two of them.

First, you are able to use Trace Dependents to find the inputs to the selected cell. This will assist you track down where all of the input values are coming from, if it is not apparent.

Numerous occasions, this may lead you to the supply of the error all by itself. When you finally are performed, click take away arrows to clean the arrows out of your spreadsheet.

You may also utilize the Evaluate Formula device to determine the consequence of a cell - one particular step at a time. This is often useful for all formulas, but especially for those that contain logic functions or a lot of nested functions:

ten. BONUS TIP: Use Data Validation to avoid Spreadsheet Mistakes
Here’s a bonus tip that ties in with all the final one. (Any person who will get ahold of your spreadsheet while in the potential will appreciate it!) If you are making an engineering model in Excel and also you discover that there's a chance for your spreadsheet to produce an error attributable to an improper input, you can actually limit the inputs to a cell through the use of Data Validation.

Allowable inputs are:
Total numbers greater or under a number or in between two numbers
Decimals better or lower than a variety or in between two numbers
Values in a record
Dates
Instances
Text of the Particular Length
An Input that Meets a Customized Formula
Information Validation is usually located under Data>Data Equipment within the ribbon.

http://vamosjuly.strikingly.com/blog/9-smarter-strategies-to-use-excel-for-engineering

0 Comments
Please login to post your comment..