Just a quick tip to revive the blog from a month long silence. I am alive and kicking. I have been occupied with a quest to rescue princess & maidens on video game console. Recently we bought SNES classic console from Nintendo and I have been playing Legend of Zelda – a link to past regularly. As it is almost summer, I am also enjoying the beautiful outdoors in Wellington. All this means, little time for blogging. I will try to post a few more times before the end of year.
Make a list of numbers in a jiffy with Power Query:
We know that in Excel, you can type a few numbers and use the fill handle to fill down (or up etc.) numbers as you want.
But what if you need some numbers in Power Query?
Simple, just type ={1..10} in the Power Query formula bar to get the numbers 1 thru 10. See this in action.

What formula bar? I don’t see any: If your Power Query is devoid of formula bar, just go to view ribbon and slash “Formula bar” option with your master sword. You will now acquire the magical power of formula bar. You can see and edit mysterious M language instructions now.
Oh wait, my numbering needs are a little crazy
Of course they are. You just need to unleash a bottled fairy on those numbers. Or take the easy route and use =List.Numbers() function. Go ahead, it won’t bite you.
Examples of List.Numbers() in Power Query:
- List.Numbers(1,10): Same as {1..10}
- List.Numbers(1,10,2): You get numbers {1,3,5…,19} ie first 10 odd numbers
- List.Numbers(0,10,2): Take a guess… what do you think this will do?
- List.Numbers(0,100,10): You get 100 multiples of 10, starting with 0, ending at 990
Can I get some dates?
You can also get raisins, dried apricots and cranberries, but only on the bulk-food aisle. If you just want dates, as in 13th of November 2018, then you can use List.Dates() function.
Examples of List.Dates():
Unlike simple numbers and text values, dates & durations need to be typecasted. We use #date, #duration to generate the required format first. Keep that in mind when reading below examples.
- List.Dates(#date(2018, 1, 1), 365, #duration(1, 0, 0, 0)): You get all 365 dates in year 2018, starting with 1 January 2018.
- List.Dates(#date(2018, 11, 13), 31, #duration(1, 0, 0, 0)): You get 31 days from 13th of November 2018.
Try with other numbers in duration to see what happens.
Last but not least – You get List, not Table
In all these cases, Power Query spits out a list. While it looks like a table, list is different and can ever have only one column. So if you want to do something with the list, you need to convert this to a table. This is a simple matter of spilling magic potion on the list using the List tools > Transform > “To Table” button.
Now that you have a table, you can add columns, sort or do other cool things easily.
How do you make a bunch of numbers in Power Query?
I use a variation of {1..10} or List.Dates on most of my Power BI files when I need to make up some data.
What about you? How do you like this tip? Share your Power Query wins in the comments.
I am off to D&D now – Dinner and dungeon time that is. The seven maidens can’t be saved with Power Query. Tada…
New to Power Query? Check out this great intro.













11 Responses to “Fix Incorrect Percentages with this Paste-Special Trick”
I've just taught yesterday to a colleague of mine how to convert amounts in local currency into another by pasting special the ROE.
great thing to know !!!
Chandoo - this is such a great trick and helps save time. If you don't use this shortcut, you have to take can create a formula where =(ref cell /100), copy that all the way down, covert it to a percentage and then copy/paste values to the original column. This does it all much faster. Nice job!
I was just asking peers yesterday if anyone know if an easy way to do this, I've been editing each cell and adding a % manually vs setting the cell to Percentage for months and just finally reached my wits end. What perfect timing! Thanks, great tip!
If it's just appearance you care about, another alternative is to use this custom number format:
0"%"
By adding the percent sign in quotes, it gets treated as text and won't do what you warned about here: "You can not just format the cells to % format either, excel shows 23 as 2300% then."
Dear Jon S. You are the reason I love the internet. 3 year old comments making my life easier.
Thank you.
Here is a quicker protocol.
Enter 10000% into the extra cell, copy this cell, select the range you need to convert to percentages, and use paste special > divide. Since the Paste > All option is selected, it not only divides by 10000% (i.e. 100), it also applies the % format to the cells being pasted on.
@Martin: That is another very good use of Divide / Multiply operations.
@Tony, @Jody: Thank you 🙂
@Jon S: Good one...
@Jon... now why didnt I think of that.. Excellent
Thank You so much. it is really helped me.
Big help...Thanks
Thanks. That really saved me a lot of time!
Is Show Formulas is turned on in the Formula Ribbon, it will stay in decimal form until that is turned off. Drove me batty for an hour until I just figured it out.