23 May 2016

*Crazy Formulas in Microsoft Excel(office 2010)*

I’ve always believed that Excel is one of the most powerful software tools out there. It isn’t just the fact that it’s spreadsheet software, which is by its nature powerful anyway. No, Microsoft Excel 2013 itself has such an awesome collection of built-in tools and features that it has beyond any doubt, become one of the most useful tools for so many things. In this article, I plan to show you how powerful formulas and conditional formatting can be, with three pretty useful examples.
We’ve covered a number of different ways to make better use of Excel, such as using it to create your own calendar template, using it as a goals management tool, and other unique ways that you can use it to manage your life. Just read those articles and you’ll see just how powerful Excel can be.
Much of the power really lies behind the formulas and rules that you can write to manipulate data and information automatically, regardless of what data you insert into the spreadsheet.

Digging Into Excel

With the right information, you can create a system that automatically calculates and recalculates results and reports from that raw data. Today, I’d like to dig a little further under the surface and show you how you can use some of the underlying formulas and other tools to make better use of Excel.

Cool Conditional Formatting With Formulas

One of the tools that I think people just don’t use often enough is Conditional Formatting. With the use of formulas, rules, or just a few really simple settings, you can transform a spreadsheet into an automated dashboard that shows you a lot about the information in the spreadsheet at just a glance.
To get to Conditional Formatting, you just click on the Home tab, and click on the “Conditional Formatting” toolbar icon.

crazyexcel1
Under conditional formatting, there are a bunch of options. Most of these are beyond the scope of this particular article, but the majority of them are about highlighting, coloring or shading cells based on the data within that cell. This is probably the most common use of conditional formatting – doing things like turning a cell red using logical less-than or greater-than formulas.
One of the lesser used – or known about – conditional formatting tools is the icon sets option, which provides you with a great set of icons you can use to turn an Excel data cell into a dashboard display icon.
crazyexcel2
I discovered this once I upgraded to Office 2013 and used conditional formatting in Excel 2013. I checked out the icon sets and saw these cool LED indicator lights that I had only really seen before in some of the factory automation displays I’ve programmed. When you click on “Manage rules”, it’ll take you to the Conditional Formatting Rules Manager. Depending on the data you selected before choosing the icon set, you’ll see the cell indicated in the Manager window, with the icon set you just chose.
crazyexcel3
When you click on “Edit Rule…”, you see the dialog where the magic happens. This is where you can create the logical formula and equations that will display the dashboard icon you want. In my example, I monitor time spent on different tasks versus my budgeted time. If I’ve gone over half my budget, I want a yellow light to display, and if I’m over budget, I want it to go red.
crazyexcel4
As you can see, I’m not really budgeting my time too well. Almost half of my time is spent way over what I’ve budgeted.
crazyexcel5
Time to refocus and better manage my time!

Look Up Items With the VLookup Function

Okay, maybe that isn’t crazy enough for you. Maybe you aren’t so excited about simple logical formulas turning lights on and off. Fine – if you’re an old-school Excel fiend and you like using more advanced Excel functions, then I’ve gone another one for you.
You are probably familiar with the VLookup function, which lets you search through a list for a particular item in one column, and return the data from a different column in the same row as that item. Unfortunately, the function requires that the item you’re searching for in the list is in the left column, and the data that you’re looking for is on the right, but what if they’re switched?
In the example below, what if I want to find the Task that I performed on 6/25/2013 from the following data?
crazyexcel6
In this case, your searching through values on the right, and you want to return the corresponding value on the left – opposite how VLookup normally works. If you read Excel pro-user forums you’ll find a lot of people saying this isn’t possible with VLookup and that you have to use a combination of Index and Match functions to do this. That’s not entirely true.
You can get VLookup to work this way by nesting a CHOOSE function into it. In this case, the formula would look like this:
“=VLOOKUP(DATE(2013,6,25),CHOOSE({1,2},E2:E8,A2:A8),2,0)”
What this function means in simple English is that you want to find the date 6/25/2013 in the lookup list, and then return the corresponding value from the column index. In this case, you’ll notice that the column index is “2”, but as you can see the column in the table above is actually 1, right?
crazyexcel7
That’s true, but what you’re doing with the “CHOOSE” function is manipulating the two fields. You’re assigning reference “index” numbers to ranges of data – assigning the dates to index number 1 and the tasks to index number two. So, when you type “2” in the VLookup function, you’re actually referring to Index number 2 in the CHOOSE function. Crazy, eh?
crazyexcel8
So now the VLookup uses the Date column and returns the data from the Task column, even though Task is on the left. Now that you know this little tidbit, just imagine what you can do!

Insane Nested Formulas to Parse Strings

As you can see, I’m trying to get a little crazier as we go, because I know there are always some of you out there that go, “…well that’s not crazy at ALL!!” I know, your standards are high and I’m trying to live up to them. If I’ve failed with my last two attempts, I bet I can appeal to your need for crazy with this particular formula.
There may be cases where you either import data into Excel from an outside source that is made up of a string separated by delimiters within the field itself. Once you bring in the data, you want to parse that data out into the individual components.
crazyexcel10
Here’s how this is done (see if you can mentally follow along with this insanity):
For the first field, to extract the leftmost item (the person’s name), you would simply use a LEFT function in the formula.
“=LEFT(A2,FIND(“;”,A2,1)-1)”
This searches the text string from A2, finds the “;” delimiter symbol, subtracts one for the proper location of the end of that string section, and then grabs the leftmost text to that point. In this case, that’s “Ryan”. Mission accomplished.
But what about the other sections? Well, to extract the parts on the right, you need to nest multiple RIGHT functions to grab the section of text up until that first “;” symbol, and perform the LEFT function on it again. Here’s what that looks like to extract the street number part of the address.
“=LEFT((RIGHT(A2,LEN(A2)-FIND(“;”,A2))),FIND(“;”,(RIGHT(A2,LEN(A2)-FIND(“;”,A2))),1)-1)”
It looks crazy, but it’s not hard to piece together. All I did is took this function:
“RIGHT(A2,LEN(A2)-FIND(“;”,A2))”
And inserted it into every place in the LEFT function above where there’s an “A2”. This correctly extracts the second section of the string.
Each subsequent section of the string needs another nest created. So now you just take the crazy “RIGHT” equation you had created for the last section, and then past that into a new RIGHT formula with the previous RIGHT formula pasted into itself wherever you see “A2”. Here’s what that looks like.
“(RIGHT((RIGHT(A2,LEN(A2)-FIND(“;”,A2))),LEN((RIGHT(A2,LEN(A2)-FIND(“;”,A2))))-FIND(“;”,(RIGHT(A2,LEN(A2)-FIND(“;”,A2))))))”
Then you take THAT formula, and place it into the original LEFT formula wherever there’s an “A2”. The final mind-bending formula looks like this:
“=LEFT((RIGHT((RIGHT(A2,LEN(A2)-FIND(“;”,A2))),LEN((RIGHT(A2,LEN(A2)-FIND(“;”,A2))))-FIND(“;”,(RIGHT(A2,LEN(A2)-FIND(“;”,A2)))))),FIND(“;”,(RIGHT((RIGHT(A2,LEN(A2)-FIND(“;”,A2))),LEN((RIGHT(A2,LEN(A2)-FIND(“;”,A2))))-FIND(“;”,(RIGHT(A2,LEN(A2)-FIND(“;”,A2)))))),1)-1)”
That formula correctly extracts “Portland, ME 04076” out of the original string.
crazyexcel9
t
To extract the next section, repeat the above process all over again. Your formulas can get really loopy, but all you’re doing is cutting and pasting long formulas into itself, make long nests that work really well!

*PC GAMES (how to save video game to a video file)*

How to Record Video Games on PC

It’s quite obvious that recording video games on PC is a cool and necessary feature for professional gamers and people who just love playing good games from time to time. Advanced gamers can use video from their favorite games, such as Diablo, World of Warcraft, World of Tanks, or Grand Theft Auto, to share their success with friends and improve their gaming skills. So, how to record gameplay on your PC? There’s no need to buy an expensive gameplay recorder because there’s a universal software – Movavi Game Capture – which allows to grab game video at full screen as well as to create screencasts and save online video to the hard drive.
Game recording can be performed at the frame rate up to 60 so you will get a smooth game video record in top-notch HD quality by pressing a single button!

Download this game recording software, check out this tutorial and find out how to save game video to your PC.
All you need to get started creating art in Excel is the program itself and a littlecreativity, but don’t expect to match Horiuchi’s efforts straight away. The artist discovered his talent when he entered an AutoShape art competition in 2006, and reportedly blew any and all competition out of the water. Who knows what he could do with a program like Photoshop?

Step 1: Install the Gaming Recorder

Once you’ve downloaded the program, run the .exe file and follow the instructions of the Installation Wizard. It will take you just a few minutes.

Step 2: Adjust the Recording Settings

Step 2 - Start using game recording software
Select the Capture Game mode on the right part of the program interface. For dynamic games go to Capture >Options > Video and set the maximum frame rate (60). It will lead to a better quality of game video recording and a bigger size of the output file. So make sure you have enough free space on your hard drive.

Step 3: Record the Video Game

Step 3 - Click the button to start using Movavi game recorder
When the Capture Game mode is chosen, the program control switches to the keyboard. Run the game and simply press F10 to start and stop recording the gaming session. To pause and resume the process, press F9.

Step 4: Save the Video in the Format You Need

Step 4 - Record video game footage
Click the Save button and our game recorder will save your movie in the AVI format. Want a different one? Just tick the Convert to option, choose the desired format or preset for a mobile device, and click Convert. You can choose the Online Video preset and then click Share to upload it to YouTube or Facebook via built-in online sharing application.
Now you know what's the best way to record video game footage. No additional hardware required. Movavi game recording program won’t affect your computer’s performance but it will record your every movement in the world of your favorite computer game, be it WoT, GTA, Warthunder, Max Payne 2, Sims 3, or any other.

*MICROSOFT EXCEL(LOGICAL FUNCTION)*

LOGICAL FUNCTION 

Now let's look into logical function in microsoft excel .

Excel 2010 uses seven logical functions — AND, FALSE, IF, IFERROR, NOT, OR, and TRUE — which appear on the Logical command button's drop-down menu on the Formulas tab of the Ribbon. All the logical functions return either the logical TRUE or logical FALSE when their functions are evaluated.
Here are the names of the logical functions along with their argument syntax:
  • AND(logical1,logical2,...) tests whether the logical arguments are TRUE or FALSE. If they are all TRUE, the AND function returns TRUE to the cell. If any are FALSE, the AND function returns FALSE.
  • IF(logical_test,value_if_true,value_if_false) tests whether thelogical_test expression is TRUE or FALSE. If TRUE, the IF function returns the value_if_true argument. If FALSE, the IF function returns thevalue_if_false argument.
  • IFERROR(value,value_if_error) tests whether the value expression is an error. IFERROR returns value_if_error if the expression is an error, orvalue of the expression if it is not an error.
  • NOT(logical) tests whether the logical argument is TRUE or FALSE. If TRUE, the NOT function returns FALSE. IF FALSE, the NOT function returns TRUE.
  • OR(logical1,logical2,...) tests whether the logical arguments are TRUE or FALSE. If any are TRUE, the OR function returns TRUE. If all are FALSE, the OR function returns FALSE.
  • FALSE() takes no argument and simply enters logical FALSE in its cell.
  • TRUE() takes no argument and simply enters logical TRUE in its cell.
The logical_test and logical arguments that you specify for these logical functions usually employ the comparison operators (=<>,<=>=, and <>), which themselves return logical TRUE or logical FALSE values. For example, suppose that you enter the following formula in your worksheet:
=AND(B5=D10,C15>=500)
In this formula, Excel first evaluates the first logical argument to determine whether the contents in cell B5 and D10 are equal to each other. If they are, the first comparison returns TRUE. If they are not equal to each other, this comparison returns FALSE. The program then evaluates the second logicalargument to determine whether the content of cell C15 is greater than or equal to 500. If it is, the second comparison returns TRUE. If it is not greater than or equal to 500, this comparison returns FALSE.
After evaluating the comparisons in the two logical arguments, the AND function compares the results: If logical argument 1 and logical argument 2 are both found to be TRUE, then the AND function returns logical TRUE to the cell. If, however, either argument is found to be FALSE, the AND function returns FALSE to the cell.
When you use the IF function, you specify what's called a logical_testargument whose outcome determines whether the value_if_true orvalue_if_false argument is evaluated and returned to the cell. The logical_testargument normally uses comparison operators, which return either the logical TRUE or logical FALSE value. When the argument returns TRUE, the entry or expression in the value_if_true argument is returned to the cell. When the argument returns FALSE, the entry or expression in the value_if_falseargument is returned.
Consider the following formula that uses the IF function to determine whether to charge tax on an item:
=IF(E5="Yes",D5+D5*7.5%,D5)
If cell E5 contains Yes, the IF function uses the value_if_true argument that tells Excel to add the price entered in cell D5 to the same value times the tax rate of 7.5%. If, however, cell D5 is blank or contains anything other than the text Yes, then the IF function uses the value_if_false argument, which tells Excel to just return the price in cell D5 without adding any tax to it.
As you can see, the value_if_true and value_if_false arguments of the IF function can contain constants or expressions whose results are returned to the cell that holds the IF formula

Subscribe Here

Name

Email *

Message *