Smooze Change The Way You Scroll 1 7 6
The mouse on the touch cover stupidly scrolls the wrong way. This is annoying, confusing, and unintuitive. I know apple started this trend, but I'm disappointed to see Microsoft copy this idiotic change. Even worse, I can't find a way to reverse it back to the normal scroll direction. Has anyone figured this out? Change how fast your wheel scrolls. The settings in the Wheel tab affect how fast you can scroll through documents and web pages. The 'Vertical Scrolling' speed is dictated by lines-per-click. You can also set it to scroll a whole screen at a time. This is similar to the settings in the Mouse Settings menu. Oh yeah, I'm using the Microsoft Wireless Mobile Mouse 4000. The software It installed was a Microsoft Mouse and Keyboard Center. There's an option to customize wheel behavior, which lets you change vertical scrolling speed, horizontal scrolling speed, accelerated vertical scrolling, and an option to identify programs which don't scroll correctly.
- Cached
- See Full List On Css-tricks.com
- Smooze Change The Way You Scroll 1 7 62x39
- CSSOM View Module: The Draft Specification, Including The CSS Property. The Current Draft Includes A Recommendation To Move The Scroll-behaviorto Another Spec, So It Will Be Interesting To See Wher...
- How To Make A Scrollable Menu Without Scrolling The Body
The scroll-behavior property accepts two values, which essentially toggle the smooth scrolling feature on and off. Auto (default): This value allows the abrupt jump between elements within the scrolling box. Smooth: True to its name, this value is the smooth animated transition between elements within the scrolling box. This video shows how to invert your mouse scroll directions for PC.
Use a scroll bar to change the end date for a summary report. Quickly scroll through data, without using any macros
Introduction
In Excel, you can add a Scroll Bar, and use it to change the values in worksheet cells. In this example, the Scroll Bar will change the end date in a summary report, so you can scroll through the months, and see the data change.
This technique does not require any programming.
Set up the Workbook
In this example, there is a data table, with sales order information.
A pivot table is on a separate worksheet, and is based on the sales order table. The order month is in the row area, region is in the column area, and quantity is in the values area.
Create a List of Dates
On a separate worksheet, named AdminDates, you'll set up a list of dates, and named cells to calculate which date has been selected in the scroll bar.
In this example, we want to be able to scroll to any date in the past 12 months, so you'll use formulas to create a list of 12 month end dates:
- In column E, enter the numbers 1 to 12, in descending order.
- In cell F2, enter the following formula, to calculate the last date in the current month:
=DATE(YEAR(TODAY()),MONTH(TODAY())+1,1)-1
- In cell F3, enter the following formula, to calculate the last date in the previous month
=DATE(YEAR(F2),MONTH(F2),1)-1
- Select cell F3, and copy its formula down to cell F13, to create a list of 12 month end dates.
Create the Date Cells
The scroll bar will be linked to a cell, so you'll name a cell on the AdminDates worksheet.
- On the AdminDates worksheet, in cells B2:C3, enter labels for the scroll bar date cells, and put borders around cells C2:C3.
- Select cell C2, and name it as ScrollBarSel.
- Name cell C3 as DateSel
- Type the number 12 in cell C2 -- later, the Scroll Bar will automatically put a number in this cell
- In cell C3, enter the following INDEX / MATCH formula, to pull the selected date from the list of dates. This will find the selected number in column E, and return the date from that row.
=INDEX(F2:F13,MATCH(ScrollBarSel,E2:E13,0))
- Format cell C3 as a date, so you can check that the correct date is showing
Set Up the Summary Sheet
On another sheet, named Summary, set up a table where you can show three months of data, and a total.
Cached
- You'll add formulas in the next step, and for now, just type dates in the heading row, and put fake numbers in the value cells.
- Add SUM formulas in the Total column and Total row, to calculate the monthly totals and region totals.
TIP: After you enter the fake numbers, select cells C6:F8, and click the AutoSum command on the Ribbon, to automatically create the SUM formulas.
Add Formulas to the Table Headings
You can add formulas to the summary table headings, so they show the selected date range.
- On the Summary sheet, in cell E5, type a formula to link to the selected date cell:
=DateSel
- In cell C5, type a formula to calculate the previous month's end date, and copy across to cell D5:
=DATE(YEAR(D5),MONTH(D5),1)-1
Add Formulas to the Value Cells
Next, you'll add formulas to the value cells in the summary table, to pull data from the pivot table..
- Select cell C6 in the summary table, and type an equal sign.
- Switch to the pivot table sheet, and click on the first quantity for the East region. A GETPIVOTDATA formula will be automatically created. (If not, change your pivot table settings, to allow Generate GetPivotData.)
- Press Enter, to complete the GETPIVOTDATA formula. I've added line breaks in this example, to make the formula easier to read. The formula refers to a specific date and region, and you'll change those to cell references.
- In the formula, select 'East', including the quote marks, and click on cell B6, where the East label is. Add a $ in front of the B, to make the column an absolute reference -- $B6.
- Next, change the DATE formula within the GETPIVOTDATA formula, so it refers to the date heading in cell C5. For this reference, use an absolute reference to the row, and a relative reference to the column -- C$5
DATE(YEAR(C$5),MONTH(C$5),DAY(C$5))
- Next, wrap the GETPIVOTDATA formula with an ERRORIF formula, and return a 0 if there is an error. Here is the final formula.
=IFERROR(GETPIVOTDATA('Quantity','Region Pivot'!$B$3, 'OrderMth',DATE(YEAR(C$5),MONTH(C$5),DAY(C$5)), 'Region',$B6),0)
- Finally, copy the formula across to column E, and down to row 7, to complete the table.
- The table will show the correct quantity for each month and region.
Add the Scroll Bar
Next, follow these steps to add the scroll bar, and link it to the date cell:
- On the Ribbon's Developer tab, click Insert, and under Form Controls, click Scroll Bar
- On the Summary sheet, above the date headings, draw a scroll bar.
- Right-click on the scroll bar, and click Format Control
- In the Format Control window, on the Control tab, change the settings so the values are:
- Current Value: 1
- Minimum Value: 1
- Maximum Value: 12
- Incremental Change: 1
- Page Change: 3
- Cell Link: ScrollBarSel
- Click OK, to complete the settings
Use the Scroll Bar
Before you can test the Scroll bar, click on the worksheet, to unselect the Scroll bar.
Then, to use the Scroll Bar:
- click the arrow at either end of the Scroll Bar, to go up or down 1 month
- drag the scroll box, to move quickly through the months
- click in the Scroll Bar, to go up or down a page (3 months)
Add a Dynamic Chart and Title
To enhance the report, you can add a chart, based on the three months of data. This video shows how to create the chart, and how to add a worksheet title that shows the selected date range.
The chart title is linked to the worksheet title cell, so it also updates when the date range is changed. The formula in the heading cell uses the TEXT function to format the dates::
='Sales Summary - ' & TEXT(C5,'mmm-yy') & ' to ' &TEXT(E5,'mmm-yy')
Download the Sample File
See Full List On Css-tricks.com
To download the zipped sample file, in xlsx format, click here: Scroll Bar Date Selector
Smooze Change The Way You Scroll 1 7 62x39
There are no macros in the file.
More Tutorials
Smooze animates your scroll and adds functionality to your non-Apple mouse (scroll-wheel mouse).
- Disable scroll acceleration in macOS 10.12 Sierra (the app is not free but that specific feature is free and will always be free)
- Every app you own will have buttery smooth scrolling
- Save time by attaching mouse buttons to actions
- Disable animated scroll for specific apps
WHAT’S NEW
Version 1.7.6:
Fixed:
- Minor bugs
CSSOM View Module: The Draft Specification, Including The CSS Property. The Current Draft Includes A Recommendation To Move The Scroll-behaviorto Another Spec, So It Will Be Interesting To See Wher...
REQUIREMENTS
- Intel, 64-bit processor
- macOS 10.12 or later
How To Make A Scrollable Menu Without Scrolling The Body
ScreenShots :
Download Link
If you are using Adblocker!! Please support this website by adding us to your whitelist. Ads are what helps us bring you premium content! . Thank you!