Undocumented, Unloved and Unused Excel Functions
Following on from Chandoo’s MLookup function published on 1st April 2011, I thought it might be worth documenting a few undocumented, no-longer documented and rarely used Excel functions.
Although some of the functions below aren’t documented they still work as of Excel 2010.
Users should be cautious with their use going forward as Microsoft may withdraw them from future versions of Excel.
But if you see them appear in older Excel models at least you’ll be the full bottle.
This post will look at the following functions:
- Datedif
- Roundup
- RoundDown
- Evaluate
- Convert
- Roman
- FactDouble
- Bahttext
Worked examples of all these functions are presented in the Example File which is compatible with all versions of Excel.
Datedif
The DATEDIF function computes the difference between two dates in a variety of different intervals, such number of years, months, or days.
This function is available in all versions of Excel since at least version 5/95, but is documented in the help file only for Excel 2000.
By the way, do not confuse the DATEDIF worksheet function with the VBA DateDiff function.
Use:
=DATEDIF(Start Date, End Date, Interval)
Where:
Start Date must be less than the End Date.
Interval is the interval type to return.
Interval value must be one of the following:
| Interval | Meaning | Description |
| m | Months | Complete calendar months between the dates. |
| d | Days | Number of days between the dates. |
| y | Years | Complete calendar years between the dates. |
| ym | Months Excluding Years | Complete calendar months between the dates as if they were of the same year. |
| yd | Days Excluding Years | Complete calendar days between the dates as if they were of the same year. |
| md | Days Excluding Years And Months | Complete calendar days between the dates as if they were of the same month and same year. |
If you are including the Interval string directly within the formula, you must enclose it in double quotes:
=DATEDIF(Date1,Date2,”m”)
Examples:
| Start Date | 13/01/1963 | ||
| End Date | 12/05/2011 | ||
| Years | =DATEDIF($B$5,$C$5,”Y”) | 48 | |
| Months | =DATEDIF($B$5,$C$5,”M”) | 579 | |
| Days | =DATEDIF($B$5,$C$5,”D”) | 17651 | |
| Months Exc. Years | =DATEDIF($B$5,$C$5,”ym”) | 3 | |
| Days Exc. Years | =DATEDIF($B$5,$C$5,”yd”) | 119 | |
| Days Exc. Years & Months | =DATEDIF($B$5,$C$5,”mD”) | 29 | |
| Start Date > End Date | =DATEDIF($D$5,$D$4,”Y”) | #NUM! | |
Use of the Datedif function on Chandoo.org:
Datedif has been used a number of times at Chandoo.org
http://chandoo.org/forums/topic/how-to-calculate-age-from-their-dob
http://chandoo.org/wp/2009/09/22/elapsed-time-excel/
http://chandoo.org/wp/2008/08/26/date-time-tips-ms-excel/
Disclaimer:
Although the Datedif function above isn’t documented it still works as of Excel 2010. Users should be cautious with their use going forward as Microsoft may withdraw support for them in future Excel versions.
ROUNDUP() and ROUNDDOWN()
The Roundup and Rounddown functions rounds a number up or down, away from zero and have pretty much been replaced by the Round function.
Use:
The Roundup function rounds a number up, away from zero.
=ROUNDUP(number, num_digits)
The Rounddown function rounds a number down, towards zero.
=ROUNDDOWN(number, num_digits)
Roundup() behaves similarly to the Round() function, except that it always rounds a number up based on the following rules:
- If num_digits is greater than 0, then number is rounded up to the specified number of decimal places.
- If num_digits is 0 or omitted, then number is rounded up to the nearest integer.
- If num_digits is less than 0, then number is rounded up to the left of the decimal point.
Examples:
ROUNDUP(4.1,0) equals 5
ROUNDUP(106.9,0) equals 107
ROUNDUP(3.14159, 3) equals 3.142
ROUNDUP(-3.14159, 1) equals -3.2
ROUNDUP(31415.926, -2) equals 31500
Rounddown() behaves similarly to the Round() function, except that it always rounds a number down based on the following rules:
- If num_digits is greater than 0, then number is rounded down to the specified number of decimal places.
- If num_digits is 0 or omitted, then number is rounded down to the nearest integer.
- If num_digits is less than 0, then number is rounded down to the left of the decimal point.
Examples:
ROUNDDOWN(4.1, 0) equals 4
ROUNDDOWN(106.9,0) equals 106
ROUNDDOWN(3.14159, 3) equals 3.141
ROUNDDOWN(-3.14159, 1) equals -3.1
ROUNDDOWN(31415.92654, -2) equals 31400
Use on the Roundup and Rounddown functions on Chandoo.org:
The Roundup and Rounddown functions have been used several times at Chandoo.org
Roundup
http://chandoo.org/wp/2010/04/29/quarterly-totals-from-monthly-data/
http://chandoo.org/wp/2010/04/30/quarterly-totals-multi-year-data/
Rounddown
http://chandoo.org/wp/2010/04/30/quarterly-totals-multi-year-data/
http://chandoo.org/wp/2009/07/06/excel-formulas-round-sort/
Evaluate
Evaluate is an Excel ver 4.0 macro function which is still supported and functional in Excel 2010.
The Evaluate function allows for the evaluation of a text equation as an algebraic equation.
The evaluate function cannot be used as a spreadsheet function but can be used in Named Ranges.
It is probably best described by example; Evaluate 1, from the Example File.
Example:
Say you have a polynomial equation in a cell as Text A1: ‘=X2 + 5*Y – Z
Setup 3 named ranges, X, Y , Z with values X=10, Y=5 and Z=3
You can use Evaluate in a a Named Range eg: Result =Evaluate(SheetName!$A$1)
And then on a worksheet =Result, which will return the answer 122 = 102 + 5*5 – 3
Evaluate can be used to allow graphing of equations without use of worksheet functions or even worksheet ranges, an example of each is shown in the examples file as Evaluate 2 and Evaluate 3 .
Evaluate 2: Uses a Range as the X Values and a Named Range using the Evaluate function as the calculated Y Values
Evaluate 3: Uses Named Ranges as the X Values and as the calculated Y Values based on an Evaluate function
Use of the Evaluate function on Chandoo.org:
Not Used
Convert
Converts a number from one measurement system to another.
For example, CONVERT can translate a table of distances in Kilometres to a table of distances in Miles.
Convert includes 49 units spread amongst the following 10 categories
| Category | No Units |
| Weights & Mass, | 5 |
| Time | 5 |
| Force | 3 |
| Power | 2 |
| Temperature | 3 |
| Distance | 8 |
| Pressure | 3 |
| Energy | 9 |
| Magnetism | 2 |
| Liquid Measures | 9 |
Use:
=Convert(number, From Unit, To Unit)
A list of all the Conversion Units and Conversion Prefixes is included on the Conversion Factors tab of the Examples File.
Examples:
| Example | Result | Description (Result) |
| =CONVERT(5, “lbm”, “kg”) | 2.27 | Converts a 5 pound mass to kilograms (2.267) |
| =CONVERT(80, “F”, “C”) | 6.67 | Converts 80 degrees Fahrenheit to Celsius (26.6) |
| =CONVERT(1, “ft”, “kg”) | #N/A | Data types are not the same so an error is returned (#N/A) |
| ‘=CONVERT(CONVERT(100,”ft”,”m”),”ft”,”m”) | 9.29 | Converts 100 square feet into square meters (9.290304). |
A list of all the Conversion Units and Conversion Prefixes is included on the Conversion Factors tab of the Examples File.
Use of the Convert function on Chandoo.org
http://chandoo.org/forums/topic/convert-function
Roman
The Roman function converts a number to Roman format.
Use:
=ROMAN(number, form)
=ROMAN(45 ) = XLV
Form is a number specifying the type of roman numeral you want. The roman numeral style ranges from Classic to Simplified, becoming more concise as the value of form increases.
| Form | Type |
| 0 or omitted | Classic. |
| 1 | More concise. See example below. |
| 2 | More concise. See example below. |
| 3 | More concise. See example below. |
| 4 | Simplified. |
| TRUE | Classic. |
| FALSE | Simplified. |
Example:
| Example | Formula | Description (Result) | |
| =ROMAN(2011) | MMXI | Converts 2011 to Roman (MMXI) | |
| =ROMAN(499,0) | Classic or Omited | CDXCIX | Converts 499 to Roman (CDXCIX) |
| =ROMAN(499, True) | Classic | CDXCIX | Converts 499 to Roman (CDXCIX) |
| =ROMAN(499,1) | More Concise | LDVLIV | Converts 499 to Roman (LDVLIV) |
| =ROMAN(499,2) | More Concise | XDIX | Converts 499 to Roman (XDIX) |
| =ROMAN(499,3) | More Concise | VDIV | Converts 499 to Roman (VDIV) |
| =ROMAN(499,4) | Simplified | ID | Converts 499 to Roman (ID) |
| =ROMAN(499, False) | Simplified | ID | Converts 499 to Roman (ID) |
Use of the Roman function on Chandoo.org:
Nil
Factdouble
Factdouble returns the double factorial of a number and is expressed in mathematics as n!!
Double factorials are used in probability theory and other higher levels of mathematics and is really just a way to simplify an otherwise complex expression
If the number is Even Factdouble = n(n-2)(n-4)…(4)(2)
If the number is Odd Factdouble = n(n-2)(n-4)…(3)(1)
So it is simpler to write 10!! than 10x8x6x4x2
Use:
=Factdouble( number )
Example:
| Example | Result | Description (Result) |
| =Factdouble(8) | 384 | Factdouble of 8 = 8x6x4x2 = 384 |
| =Factdouble(9) | 945 | Factdouble of 9 = 9x7x5x3x1 = 945 |
Use of the Factdouble function on Chandoo.org
Not used
Bahttext
Converts a number to Thai Text represention of the number
Use:
=Battext( Number)
Example:
Use of the Bahttext function on Chandoo.org:
Not used
Examples
An example file with worked examples from all the above functions is available from the following link; Example File
The file is compatible with all Excel versions.
What Functions Have You Discovered?
What Functions Have You Stumbled Onto?
Let us know in the comments below:














49 Responses to “Introduction to Slicers – What are they, how to use them, tips, advanced techniques & interactive reports using Excel Slicers”
Great article!
If you want to learn a bit more about using slicers in VBA, head over here:
http://jkp-ads.com/articles/slicers03.asp
Hi
I downloaded cube-formula-slicer-selection.xlsx.
Why is 'Report Connections' grayed out?
Great article!! Thank you very much... This post is one of the most helpful for my job!
Great Introduction. Thanks very much.
Wow! trying to use this on the reports that I have now. I really liked that Quantity and Amount Bar graph used on the pivot-multi tab, but for the life of me, I can't seem to replicate it from scratch. Help please?
[…] http://chandoo.org/wp/2015/06/24/introduction-to-slicers/?utm_source=feedburner&utm_medium=email… […]
This is awesome! I will favorite this page in my blog, http://www.exceltoxl.com
Since I've known slicers about 2-3 yrs ago, I've pretty much used them in every damn report I do. Everyone that sees it for the first time is like "This is the best thing ever. Did you do that using excel or something else?" 😀 My bosses are so used it that when they see a report from someone else that doesn't have slicers they send it to me to redo it :).
Couple of tips:-
Tip 1:
If for lack of space or say you want ability to search within a filter due to numerous values being present but still want it to connect to multiple pivot tables or charts then
1. Setup a pivot table with just the report filter
2. Create a slicer with the same field and tie that to all the pivot tables/charts that you want.
3. Just place it some out of sight.
Now you have a dropdown with all your values with search option plsu it is also connected to all your charts and pivot tables.
TIP 2:
In Excel 2013, slicers can be used with just plain tables as well. Not limited to pivot tables.
Congrats!
Nice content : )
Very comprehensive. Explained in an extremely simple way. I have been using Slicers for a while, but still learnt new things from this post. Thanks for sharing. Best wishes.
Awesome Explanation !!
I have joined this blog recently. Brilliant tools are available that I started using in my day to day work. Brilliant site. Thanks heaps.
[…] Read the full article here: Introduction to Slicers – What are they, how to use them, tips, advanced techniques & interact… […]
Oh wow. I've only just started using Excel 2010 and had no idea this even existed. It makes dynamic charts so much easier!
You are my Hero! I am working with PowerPivot due to the huge amount of data I have and could not use my usual tricks to get the scatter chart title to change. For some reason the CUBE function wouldn't work (who knows why, I don't have time to dig into it now) but your "dummy" solution did.
thankyouthankyouthankyou!
Clare
On a normal PivotTable filter, you can choose whether to allow multiple items to be selected or not. Is that possible with slicers (in Excel 2010)? I've had a look through the options and not found a way to do it yet!
Hi Stevie... this is not possible with slicers.
Just hold down control when you're choosing them...can then either click another (without control) and it will show only the new one, or click the filter with the red 'x' to revert back to all options.
Not a limitation that can be placed on the slicer but still a potential workaround depending on your needs.
Very comprehensive note on slicer. I haven't yet used ms excel 2010, but learnt Slicer tool very well
How should I apply Slicer in excel 2010 version, not able find options
as directed, could you please tell me that step by step
@Arif
In Excel 2010 slicers could only be applied to Pivot tables/Charts not Regular tables
@Arif
In Excel 2010 slicers could only be applied to Pivot tables/Charts not Regular tables
I have a longitudinal line graph with the count of exams scored at each level(1-4). I need a longitudinal line graph that shows the percentage for each level. I made my pivot with the count in the field settings with a calculation of % of row total. This works great until you add a slicer fo that you can look at one level at a time. When I do this, it shows as 100% because it seems to lose the rest of the row calculations. How can I set it up to show the percent. I do not have the option of adding it to my data table. I am using straight Pivot, not PowerPivot.
@Mary
I'd suggest asking the question in the Chandoo.org Forums http://forum.chandoo.org/
Attach a sample file with an example of what you are after, even hand drawn
Hi, thanks for these tips. Is it possible to link a slicer to *different data sets*? All my data sets have a "year_opened" and "month_opened" fields, and I'd like do a single filter and update everything at once. Is that possible?
Hi,
Can someone tell me how to format a date field in a slicer to tell July 2016 instead of 07/31/2016?
Thanks in advance.
Great post - easily explainable for non excel whiz.
Thanks for the slicers post. I'm knew to this feature so don't be to harsh on me 🙂
In the example bar chart graph: "Quantity breakup by Customer Profession and & Product category" you get a different picture depending on which area is chosen "East, Middle, North, South, West". That part I get. But the graph itself doesn't specify which region you are in.
Is it possible to put the filtered criteria into the Chart title. For example if I chose West, the title would read "Quantity breakup by Customer Profession and & Product category - West".
Is that possible? Just curious. Thanks
It is possible...I have this on a number of my reports.
1) create a pivot table with just the column your slicer is set on
2) assign the slicer to that pivot table
3) create a string in cell B3 (or wherever):
="Quantity breakup by Customer Profession & Product Category- "&A3
(assuming that A3 is the cell that the chosen region appears in)
4) click (once) on the graph title, then in the formula bar type =B3
As you change the slicers, B3 will update as will the chart title.
Couple of tips:
1) if you need to have a new line for the title, use CHAR(10) e.g.
="Quantity breakup by Customer Profession & Product Category"&CHAR(10)&A3
(this will have the region on a new line)
2) if multiple regions will be chosen, I've added in an IF statement
=IF(COUNTA(A3:A10)>1,"Multiple Regions",A3)
(I'm sure there are ways to concatenate the strings but for mine it could get up to 20 and that just gets ridiculous for the graph heading)
Just Wow
I am trying to create a duplicate dashboard using data in one workbook and creating a new workbook to place in a shared file for my coworkers. I have created a separate worksheet in the original workbook for the new pivot charts and slicers I want to use in the new workbook/dashboard. I don't want all of the source data in the new workbook, as it is very large. I am having trouble making new slicers work. They work in the original workbook, but when I copy them to the new workbook they don't work. Am I going about this the right way or is there an easier way?
Very good post! Helped a lot. Keep up the good work!
how can you prevent multiple selection in a slicer box? In short, in any slicer box, only one entry is allowed and not multiple entries.
Fairly new to forum's, hoping I'm not breaking a rule here, but I found this forum which seems to provide a solution:
https://wessexbi.wordpress.com/2014/03/17/just-one-slice-please/
I have 2 files. (1. .xlsx 2. .xlsm)
1 file contains all the pivot tables and charts. its also macro enabled.
2nd file contains the source data which is a .xlsx file.
but I am unable to run slicer on my 1st file.
can anybody help me out?
chandoo.org: one of my favourite Excel sites for years.
Slicers tutorial: excellent as usual.
Animated gifs: sorry, but REALLY distracting!! Especially with two on the same screen. Is there any way they can be activated only when we click on them, or something?
Hi Team,
I have inserted a slicer to a pivot table with 4 fields...I need to add another field for the same slicer...help me with this..
First of all I would like to say terrific blog!
I had a quick questio in whiich I'd like to ask if you don't
mind. I was intereested to know how you center yourself and clear your head
before writing. I've had a hard time clearing my mind in getting my ideas out there.
I do enjoy writing however it just seems like the first 10 to 15 minutes are generally lost simply just tryying to figure out how
to begin. Any recommendations oor tips? Many thanks!
Hi All
Im trying to connect a slicer to 2 pivot tables with different sources
Both data tables have been sorted and have duplicates
ie
Table 1
Name Week FTe
A 1 7.2
A 2 7.3
B 1 7.3
B 2 7.3
Table 2
Name Month Fte
A Jan 2.6
A Feb 3.2
A Mar 4.4
B Jan 2.2
B Feb 6.4
B Mar 2.2
etc
I have created 2 pivot tables and have sorted it out the way i want with charts etc
Now all i want is to connect the Name Slicer to be connected to both of those pivot tables but problem is they have duplicates and are from different tables/sources
how can i connect/add this to a data model and connect to my name slicer?
Im sure it maybe something simple but minds not with it
So in short 1 to connect 1 slicer to 2 different pivots from different sources but not all pivots (There are dups in both) - as shown in the example
Thank You
Hi H
This is how you can do it. Create a third table with all slicer options (in this case it would be Name column) with one row per unique value. Now add this table to your source list. Then link all two tables via this third table thru Data ribbon > Manage relationships feature. Finally add a slicer on this third table column and link the slicer to both pivot charts.
Please note that you need to construct the tables and charts after data model is created.
See this page for more explanation on how to use relationships - https://chandoo.org/wp/introduction-to-excel-2013-data-model-relationships/
Hi,
Using Cube Value with Slicers is great. I am new to cube value, but it is so powerful. I am stuck on an issue where I want to filter on a slicer for all values except 1 and the slicer has thousands of values. I get #N/A in the results, when trying to do this. Any ideas on how to do an exception calc or how to get around this with the multi select slicer functionality?
Thanks in advance.
Cyleste
@Cyleste... thanks for your comments and welcome to Chandoo.org. You can use DAX to calculate such things as Excel pivot tables alone cannot function like the way you want. You can use DAX formula EXCEPT() to achieve this. For example,
=CALCULATE(SUM(data[sales]), EXCEPT(ALL(data[filter_column]), VALUES(data[filter_column]))) can tell you the sum of [sales] column in the data table by ignoring slicer selected values.
Hope that helps.
Hi Chandoo,
Thank you for your quick reply. I am not familiar with DAX but it sounds like I won't be able to apply the calculation you provided after converting the power pivot to excel formulas via OLAP.
Cyleste
Thanks Chandoo, I like yours tricks & always I use slicers. Regards from México.
Hi Chandoo,
I have a lot of text in the slices (Pivot table). The text is not completely visible. What should I do?
Please Help
Thanks
Hi Girish,
Slicers are useful only for items with short text, for ex: categories, product names etc. For longer values, you are better off using form controls for interaction - Here is an overview of form controls Form Controls – Adding Interactivity to Your Worksheets
Thanks so much for this, it's brilliant! I think it's almost there - I've actually followed the steps on the example linked in my post. I just can't get it to filter properly; it just returns 0 when I add a date into Cell O2. Should I be doing it differently?
slicers dont work with non-admin roles in OLAP Pivot Tables