Published on 07/05/2018 5:42 pm
9 SMARTER Solutions to USE EXCEL FOR ENGINEERING

como calcular o custo de uma obra
As an engineer, you are almost certainly applying Excel just about every single day. It doesn’t matter what field that you are in; Excel is utilized All over the place in engineering.
Excel is actually a huge system by using a great deal of good likely, but how can you know if you are utilising it to its fullest abilities? These 9 strategies will help you begin to get by far the most out of Excel for engineering.
one. Convert Units with out External Equipment
If you are like me, you most likely get the job done with numerous units day-to-day. It’s 1 with the great annoyances from the engineering life. But, it is end up considerably less irritating thanks to a function in Excel that will do the grunt do the job to suit your needs: CONVERT. It is syntax is:
Desire to know even more about advanced Excel strategies? Watch my free of charge education just for engineers. In the three-part video series I'll explain to you the way to solve complicated engineering challenges in Excel. Click here to have started off.
CONVERT(number, from_unit, to_unit)
The place variety may be the value that you simply need to convert, from_unit could be the unit of variety, and to_unit will be the resulting unit you need to acquire.
Now, you will no longer should head to outdoors tools to discover conversion variables, or tricky code the variables into your spreadsheets to cause confusion later on. Just let the CONVERT perform do the job to suit your needs.
You’ll locate a full 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 can also make use of the function many different times to convert a great deal more complicated units which can be prevalent in engineering.

2. Use Named Ranges to generate Formulas Simpler to comprehend
Engineering is difficult ample, without the need of striving to figure out what an equation like (G15+$C$4)/F9-H2 means. To reduce the discomfort connected with Excel cell references, use Named Ranges to create variables you can use with your formulas.

Not only do they make it less difficult to enter formulas into a spreadsheet, but they make it Much simpler to understand the formulas any time you or another person opens the spreadsheet weeks, months, or years later.

There can be some other ways to produce Named Ranges, but these two are my favorites:

For “one-off” variables, pick the cell you just want to assign a variable title to, then form the identify with the variable inside the title box within the upper left corner in the window (under the ribbon) as shown over.
When you need to assign variables to a large number of names at the moment, and have presently incorporated the variable name in a column or row following for the cell containing the value, do that: Primary, choose the cells containing the names along with the cells you desire to assign the names. Then navigate to Formulas>Defined Names>Create from Assortment. For those who would like to learn additional, you are able to study all about generating named ranges from selections right here.
Do you want to understand even more about superior Excel approaches? Watch my zero cost, three-part video series only for engineers. In it I’ll explain to you ways to remedy a complicated engineering challenge in Excel utilising a few of these strategies and even more. Click here to get commenced.
3. Update Charts Automatically with Dynamic Titles, Axes, and Labels
To produce it easy to update chart titles, axis titles, and labels you may website link them right to cells. In case you need to have for making a good deal of charts, this will be a authentic time-saver and could also potentially make it easier to stay clear of an error once you neglect to update a chart title.
To update a chart title, axis, or label, initially create the text that you just need to feature in the single cell on the worksheet. You possibly can make use of the CONCATENATE function to assemble text strings and numeric cell values into complex titles.
Up coming, choose the component on the chart. Then go to the formula bar and form “=” and decide on the cell containing the text you want to make use of.

Now, the chart element will automatically when the cell worth changes. You can get imaginative right here and pull all types of specifics in to the chart, without getting to fear about painstaking chart updates later on. It’s all completed automatically!

4. Hit the Target with Intention Look for
Commonly, we create spreadsheets to determine a outcome from a series of input values. But what if you’ve finished this inside a spreadsheet and prefer to know what input value will acquire a preferred result?

You may rearrange the equations and make the old end result the new input along with the outdated input the brand new result. You could also just guess on the input till you achieve the target end result.
The good news is although, neither of people are critical, since Excel includes a tool called Purpose Look for to undertake the get the job done for you personally.

To start with, open the Intention Seek tool: Data>Forecast>What-If Analysis>Goal Seek.
In the Input for “Set Cell:”, pick the result cell for which you already know the target. In “To Value:”, enter the target value.
Eventually, in “By modifying cell:” select the single input you'll prefer to modify to alter the end result. Choose Ok, and Excel iterates to seek out the right input to realize the target.
5. Reference Data Tables in Calculations
One particular of your things that makes Excel a great engineering device is that it is capable of handling both equations and tables of information. And also you can mix these two functionalities to create potent engineering versions by wanting up information from tables and pulling it into calculations.
You are almost certainly already familiar together with the lookup functions VLOOKUP and HLOOKUP. In lots of instances, they are able to do every little thing you would like.

But, in the event you need additional versatility and better manage in excess of your lookups use INDEX and MATCH rather. These two functions let you lookup information in any column or row of a table (not just the very first one particular), and you also can control whether or not the value returned stands out as the up coming biggest or smallest.
You can also use INDEX and MATCH to complete linear interpolation on a set of information. That is accomplished by taking advantage with the versatility of this lookup process to find the x- and y-values instantly before and following the target x-value.

six. Accurately Fit Equations to Data
Another technique to use present information within a calculation would be to match an equation to that data and utilize the equation to determine the y-value for any offered value of x.
Plenty of people understand how to extract an equation from information by plotting it on the scatter chart and incorporating a trendline. That’s Okay for receiving a fast and dirty equation, or appreciate what sort of perform most effective fits the information.
Having said that, for those who prefer to use that equation with your spreadsheet, you will desire to enter it manually. This can end result in mistakes from typos or forgetting to update the equation when the information is modified.
A better way to get the equation will be to make use of the LINEST perform. It’s an array perform that returns the coefficients (m and b) that define the very best match line by way of a data set. Its syntax is:

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

Where:
known_y’s certainly is the array of y-values in the information,
known_x’s would be the array of x-values,
const is actually a logical value that tells Excel whether or not to force the y-intercept to get equal to zero, and
stats specifies irrespective of whether to return regression statistics, such as R-squared, and so forth.

LINEST might be expanded beyond linear information sets to execute nonlinear regression on data that fits polynomial, exponential, logarithmic and energy functions. It could possibly even be used for multiple linear regression also.

seven. Save Time with User-Defined Functions
Excel has several built-in functions at your disposal by default. But, in the event you are like me, you will find many calculations you finish up executing repeatedly that really do not possess a specified function in Excel.
They are great conditions to create a User Defined Perform (UDF) in Excel working with Visual Basic for Applications, or VBA, the built-in programming language for Office solutions.

Really do not be intimidated any time you go through “programming”, although. I’m NOT a programmer by trade, but I use VBA on a regular basis to increase Excel’s capabilities and save myself time.
In case you choose to master to produce Consumer Defined Functions and unlock the huge probable of Excel with VBA, click right here to read about how I made a UDF from scratch to calculate bending strain.

8. Perform Calculus Operations
Whenever you think of Excel, it's possible you'll not assume “calculus”. But when you've tables of data you could use numerical evaluation methods to calculate the derivative or integral of that information.

These identical basic tactics are utilized by additional complex engineering software program to carry out these operations, plus they are simple and easy to duplicate in Excel.

To determine derivatives, you're able to make use of the either forward, backward, or central differences. Each of those tactics uses data in the table to calculate dy/dx, the sole differences are which information points are applied for that calculation.

For forward distinctions, use the information at point n and n+1
For backward differences, utilize the data at points n and n-1
For central differences, use n-1 and n+1, as shown under


If you should desire to integrate information within a spreadsheet, the trapezoidal rule will work very well. This strategy calculates the place under the curve among xn and xn+1. If yn and yn+1 are numerous values, the region kinds a trapezoid, consequently the name.

9. Troubleshoot Negative Spreadsheets with Excel’s Auditing Tools
Every engineer has inherited a “broken” spreadsheet. If it’s from a co-worker, you can actually generally ask them to fix it and send it back. But what should the spreadsheet originates from your boss, or worse however, someone who is no longer together with the service?

Sometimes, this will be a genuine nightmare, but Excel gives some equipment that may help you straighten a misbehaving spreadsheet. Each of these resources could be found in the Formulas tab of your ribbon, during the Formula Auditing section:

When you can see, there are actually some various equipment right here. I’ll cover two of them.

Very first, you may use Trace Dependents to locate the inputs towards the chosen cell. This could enable you to track down the place all the input values are coming from, if it’s not evident.

A number of instances, this may lead you for the source of the error all by itself. When you are done, click clear away arrows to clean the arrows out of your spreadsheet.

You can even use the Assess Formula device to calculate the consequence of a cell - one phase at a time. This is valuable for all formulas, but notably for those that incorporate logic functions or countless nested functions:

10. BONUS TIP: Use Data Validation to stop Spreadsheet Mistakes
Here’s a bonus tip that ties in using the last a single. (Anybody who will get ahold of your spreadsheet during the potential will value it!) If you’re building an engineering model in Excel and you discover that there's a chance for that spreadsheet to create an error resulting from an improper input, you can actually limit the inputs to a cell by utilizing Data Validation.

Allowable inputs are:
Whole numbers better or less than a variety or among two numbers
Decimals higher or under a number or in between two numbers
Values inside a record
Dates
Occasions
Text of the Precise Length
An Input that Meets a Customized Formula
Data Validation may be observed beneath Data>Data Resources in the ribbon.

http://bloge.webblogg.se/2018/june/9-smarter-tips-on-how-to-use-excel-for-engineering.html

0 Comments
Please login to post your comment..