Drill down with in a drill down

CREATE TABLE [Store](
[StoreId] [int] IDENTITY(1,1) NOT NULL,
[LOC_Name] [varchar](50) NULL,
CONSTRAINT [PK_Store] PRIMARY KEY CLUSTERED
[StoreId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
Insert into [dbo].[Store]
[LOC_Name]
select 'Virginia'
union all
select 'Chicago'
union all
select 'Dallas'
CREATE TABLE [Employee](
[StoreId] [int] NOT NULL,
[Emp_NAME] [nvarchar](70) NULL,
) ON [PRIMARY]
Insert into [dbo].[Employee]
[StoreId]
,[Emp_NAME]
select 1,'daniel'
union all
select 1,'jack'
union all
select 1,'roger'
union all
select 1,'matt'
union all
select 2,'sam'
union all
select 2,'henry'
union all
select 3,'eston'
union all
select 3,'robert'
union all
select 3,'nadal'
CREATE TABLE [Customer](
[CustomerId] [int] IDENTITY(1,1) NOT NULL,
[StoreId] [int] NOT NULL,
[CUST_NO] [nvarchar](11) NULL,
[Emp_NAME] [nvarchar](70) NULL,
CONSTRAINT [PK_Customer] PRIMARY KEY CLUSTERED
[CustomerId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
set identity_insert [CCC_STAGE].[dbo].[Customer] on
Insert into [CCC_STAGE].[dbo].[Customer]
[CustomerId]
,[StoreId]
,[CUST_NO]
,[Emp_NAME]
select 201,1,897456,'daniel'
union all
select 202,1,974652,'daniel'
union all
select 203,1,276294,'matt'
union all
select 204,1,612348,'jack'
union all
select 205,2,187906,'henry'
union all
select 206,2,289123,'henry'
union all
select 207,2,427403,'sam'
union all
select 208,3,591654,'robert'
union all
select 209,3,904563,'robert'
-------------- Query to retrieve In each location each employee is working on how many customers--
select [LOC_NAME],
B.[Emp_NAME],
COUNT(distinct C.[CUST_NO]) TOTAL_CUSTOMERS
FROM [CCC_STAGE].[dbo].[Store_TEST] A
join [CCC_STAGE].[dbo].[Employee_TEST] B
on A.StoreId=B.StoreId
join [CCC_STAGE].[dbo].[Customer_TEST] c
on B.StoreId=C.StoreId
and B.[Emp_NAME]=C.[Emp_NAME]
group by [LOC_NAME]
,B.[Emp_NAME]
ORDER BY [LOC_NAME],B.[Emp_NAME]
Hi everyone,
Can any one help me in this
Drill down report
can any one help me in this
If we click on drill down of Chicago, we should be able to see all the employees of Chicago in the same column,  like that if we click on drill down on each loc_name, we should be able to see employees related to that location under the loc_name column,
not in the different column. when i try am getting in different column.
How to do this in SSRS? i did this using grouping and visibility feature hidden by toggle, but am able to see employee names, but on top of them am not able to get employee as heading.
Below I am sending the code (creating the tables/inserting the data/ and retrieving the data). please try to run the query with the data I sent. you will see the same data as it is in the below image.

Hi ,
You can try below Simple Steps ;
(generate using Wizard)
1. On Solution Explorer -> Right-click on Reports -> Select Add New Report
2.Click on the Next Button -> Give a Data Source name and Click on the Edit Button
3.Select Server Name -> Select "Use SQL Server Authentication" Radio Button
4.Give User name and Password -> Select Database Name and Click on the "OK" button.
5.Press the Next Button -> type your Sql Query -> NExt
6.Select Tabular Option and Click on the Next Button
7.Select [LOC_NAME],[Emp_NAME] for the Group list and the TotalEmployee is for Details -> Next
8.Select Stepped option -> Enbale Drilldown -> NEXT-> Finish(you can use this option if only you require Drilldown option in your report else you an ignore this or simply click next.)
9. Delete EmployeeName Column  -> Paste Emplyee Name Next to LocName As shown in Image.
10 . Delete table1_Details_Group in Grouping Pane
11. Type =Sum(Fields!TOTAL_CUSTOMERS.Value) for Total Customer
12. Right Click on Emp_Name Row -> Insert Row -> Outside Group Above -> TYpe Employee
Thanks
Please Mark This As Answer or vote for Helpful Post if this helps you to solve your question/problem.

Similar Messages

  • "Enable query drill" opt. with multiple DPs launch all when drilling down

    Hi folks,
    I am using BO XI R2 and i am experiencing a weird behavior.
    I have created a report with 11 data providers and the option "Query drill" enabled. The reason is that I have several COUNT DISTINCT measures that need to go to the database when I drill down (not possible to aggregate them). Basicaly, I have one data provider per item where item could be a table or a chart.
    Now, when I do a drill down in one of dimensions in the tables/charts, I check the processes in the database and it looks like it is launching all the data providers, not just the one I am doing drill down with, so the performance is very poor. Anyone has experienced this behavior? Am I missing anything?
    Thanks in advance

    Hi John,
    Following information might be helpful in resolving the issue.
    You are able to drill only in one dimension in one report tab. The same dimension contained in 2nd report tab based on the same data provider is not drilled. 
    This is contradictory to what is documented in the product guide. See page 75 of the guide xir2_wi_analysis_en.pdf section 'Query drill and other reports based on the same data provider':
    "Query drill and other reports based on the same data provider
    If your document contains other reports that contain dimensions on which you drill in query drill mode, these reports are affected because the query drill modifies the dimensions they contain.
    Example: Drilling on a dimension that appears in another report If you have two reports based on a query that contains Year, Quarter and Sales Revenue, and you use query drill to drill down to Year = 2001 on the first report, Web Intelligence also filters the data for Year in the second report to include 2001 only.
    You can avoid this (at the cost of retrieving duplicate data into Web Intelligence) by creating a new data provider and rebuilding the other report against it. Now when you drill in query drill mode, the other report remains unaffected."
    I hope this will help you.
    Regards,
    Sarbhjeet Kaur

  • Issues with multilevel pie chart drill down with push button

    I am new to Xcelsius. I am trying to build a multilevel pie chart drill down (one pie chart drilling down to another etc) and I am able to achieve that. Now I want to add a Back Button using Push Button so that I can go up.  When I preview, the Push Button goes into two state and I have to double click to go back.  Can anyone tell me what I am doing wrong. I am using the latest Xcelsius. [The source code is here|http://www.woofiles.com/dl-195360-3lTyVM8Z-piechartdrilldownwithpushbutton.xlf]
    Thankyou.

    Hi Murali
    This is exactly the same what i tried to do,
    Drill down to 4 levels State -> City-> store etc with 4 pie charts and similar push button to close each level to
    go back to previous chart, first run from 1 to 4 works fine, then after closing all the levels and when i am at the pie chart 1
    if i click any pie slice it will jump to Pie chart 4 straight,
    I tried tracking the issue, all i could find is some how the previous dynamic visibility values are back even after erasing
    the data with the PUSH button (Destination cell insertion with blank or 0).
    did you find a solution for this issue ?
    Thanks
    Chandra

  • Drill down  with all other records

    Hi, All
    how can I see all other records after drilling down but not only record wich i drilled into?
    i mean drilling like it works in Discoverer or in other words i'd like some records to be expanded and all other collapsed. Does anybody know whether it is possible?
    Thanks in advance
    Message was edited by:
    altimer

    NO, it's not, but anything requiring a major UI overhaul would require some parsing-wrapping with some server-side scripting (like you could wrap it around a php-script - but again - this is a long shot plus you'd have problems with support in case something goes awry). I've seen at someone's blog that such functionality might be released later. For now, the best thing to do would be designing your Dashboards around it. Also, have you looked at Siebel CRM? Because last time I checked - there was something like that there - and you can integrate BI to CRM (at least you could a few years ago).

  • Drill error with discoverer Viewer

    Hi,
    i'm not able to drill up and down with discoverer viewer.
    I've the following error when i click on icon : Object doesn't support this property or method
    I've read some notes on metalink and maybe a patch is applicable to fix my problem. But i'm lost.. i don't have any experience with oas administration !
    Spécifications :
    Browser ie 7.0 with OracleBI Discoverer 10g (10.1.2.2)
    Hope my explication are clear !!
    thx in advance for help..
    Jeff
    Edited by: [email protected] on 2009-09-18 09:49

    Jeff,
    To get the fix you have to: Bug number -5673463
    (a) Apply the 10.1.2.2 patch - you can get this on Metalink (4960210). It is a big patch (over 1 and half GB in size) and will upgrade your app server.
    (b) Then apply the IE7 patch from Metalink (5758865).
    Hope this will help

  • I have created a PDF form with multiple drop downs, all with the same drop down values. When I select a value from 1 of the drop down fields, it replicates in all of the others - which I do not want. How can I fix this?

    I have created a PDF form with multiple drop downs, all with the same drop down values. When I select a value from 1 of the drop down fields, it replicates in all of the others - which I do not want. Can I fix this?

    I'm fairly new to this, but I think it has to do with the way you have the drop downs named. Did you copy one then keep pasting it in each field? If so, that is the problem. You should rename each one with a different number: Dropdown1, Dropdown2, etc. I think that might solve the issue.

  • HT201412 did a software update and now the only thing I get is the itunes logo and arrow pointing up and a lock symbol with a line going down toward the screen button.  Any suggestions to get this to open?

    Trying to get the ipad to open after doing a software update.  I only get the itunes logo with an arrow pointing toward it and a lock symbol with a line going down towards the screen button.  Any suggestions to get this to open?

    You are in Recovery Mode. Follow the instructions below to recover your iPad.
    http://support.apple.com/kb/ht4097

  • Server0 down with exit code -11113

    My server is down with error code -11113, can any one help me plz to restart the server. i tried to connect the system to ECC 5.0. Can i configuring changes to default?.
    #1.5#00188B469EEF215A02724DF4000005B00004294E3211E8EF#1171315731138#com.sap.engine.services.dbpool.spi.ManagedConnectionFactoryImpl##com.sap.engine.services.dbpool.spi.ManagedConnectionFactoryImpl#J2EE_GUEST#0####535f1835ba2c11dbc90400188b469eef#SAPEngine_Application_Thread[impl:3]_4##0#0#Error##Plain###ManagedConnectionFactoryImpl.createManagedConnection(): SQLException occured while creating ManagedConnection: com.sap.sql.log.OpenSQLException: Error while accessing secure store: File "
    AN1
    sapmnt
    AN1
    SYS
    global
    security
    data
    SecStore.properties" does not exist although it should..#
    #1.5#00188B469EEF2159026B67A5000005B00004294E3211F9CB#1171315731138#com.sap.sql.connect.OpenSQLDataSourceImpl##com.sap.sql.connect.OpenSQLDataSourceImpl#J2EE_GUEST#0####535f1833ba2c11dbb70700188b469eef#SAPEngine_Application_Thread[impl:3]_38##0#0#Error#1#/System/Database/sql/connect#Java#com.sap.sql_0019##Exception of type com.sap.sql.log.OpenSQLException caught: Error while accessing secure store: File "
    AN1
    sapmnt
    AN1
    SYS
    global
    security
    data
    SecStore.properties" does not exist although it should...
    [EXCEPTION]
    #3#com.sap.sql.log.OpenSQLException#Error while accessing secure store: File "
    AN1
    sapmnt
    AN1
    SYS
    global
    security
    data
    SecStore.properties" does not exist although it should..#com.sap.sql.log.OpenSQLException: Error while accessing secure store: File "
    AN1
    sapmnt
    AN1
    SYS
    global
    security
    data
    SecStore.properties" does not exist although it should..
         at com.sap.sql.log.Syslog.createAndLogOpenSQLException(Syslog.java:106)
         at com.sap.sql.log.Syslog.createAndLogOpenSQLException(Syslog.java:145)
         at com.sap.sql.connect.OpenSQLDataSourceImpl.setDataSourceName(OpenSQLDataSourceImpl.java:226)
         at com.sap.sql.connect.OpenSQLDataSourceImpl.setDataSourceName(OpenSQLDataSourceImpl.java:197)
         at com.sap.engine.services.dbpool.spi.ManagedConnectionFactoryImpl.createManagedConnection(ManagedConnectionFactoryImpl.java:112)
         at com.sap.engine.services.connector.jca.ConnectionHashSet.match(ConnectionHashSet.java:320)
         at com.sap.engine.services.connector.jca.ConnectionManagerImpl.allocateConnection(ConnectionManagerImpl.java:189)
         at com.sap.engine.services.dbpool.cci.ConnectionFactoryImpl.getConnection(ConnectionFactoryImpl.java:51)
         at com.sap.caf.eu.gp.base.db.ConnectionPoolJ2EE.getConnection(ConnectionPoolJ2EE.java:89)
         at com.sap.caf.eu.gp.schedule.impl.ScheduleDbImpl.getScheduleToProcess(ScheduleDbImpl.java:2115)
         at com.sap.caf.eu.gp.schedule.impl.ScheduleService.getScheduleToProcess(ScheduleService.java:462)
         at com.sap.caf.eu.gp.schedule.impl.ScheduleWorker.work(ScheduleWorker.java:86)

    Hi Ravi
    Seems there is some secured store problem.Check if it exists in /usr/sap/SID/DVEBMSID1/work.
    If it exists then problem might be something else.Copy iaik_jce.jar in the cluster/bootstrap folder.This is just a workaround.Restart the instance.
    Reward points if usefull

  • I have lost my Safari app and all the bookmarks that go with it. I have tried to download my back-up on external drive but cannot access it. Tried a start with C key held down but still no access to the back-up app.

    I have lost my Safari app and all the bookmarks that go with it. I have tried to download my back-up on external drive but cannot access it. Tried a start with C key held down but still no access to the back up app.
    Have used Superduper app. to back up and checked back-up occasionally to see if all files present  and appeared OK.
    I had previously started machine using original CD #1 to try and replace Eudora which was acting up. Did not knowingly touch Safari.
    Running iMAC System 10.4.11
    How can I successfully download from the Maxtor back-up?
    Ivan

    Further info.
    I checked the content of my other back-up and found the bookmark Bookmarks.plist in the library under Safari
    Dumped the existing copy in the computer and drag-dropped the back up. All bookmarks restored.
    Solved the Stickies problem by using Spotlight  to find file "stickiesdatabase" and did a drag- drop to replace file. All data restored.
    Re Ical data loss. Used Spotlight to find iCal document in  Library - Preferences where I found com.apple.iCal.plist in folder.
    Got ready to make change but did not immediately remove file. When I returned to Preferences folder to grab above document,
    the readable descriptors had been changed to code consisting of some upper case letters and/or single symbols!
    So now I cannot tell which is the symbol  iCal.plist
    Thanks for leading me so far, but how do I find that plist for my calendar?

  • I'm working on my iMac PowerMac8,2 PowerPC G5 (3.1) 2 GHz machine and have been having problems with the computer shutting down unpredictably. After the problem becoming impossible to work with, I shut the machine down. Now a little better, but reoccuring

    I'm working with my iMac PPC G5, PowerMac8,2, 2 GHz machine running OS X 10.4.11, and was having a problem for a while with the machine shutting down unexpectedly. There was no clear pattern to when it was shutting down as far as I could tell. For a while, it would also not restart when buttoned on.
    I set the machine aside for a while, probably a month or more, and then got it back out after its rustication. It started up and runs significantly better than it had been, but I have noticed it shutting down sometimes now again, though not as frequently as before. Sometimes it runs for a good long time between active work, sleep mode, and active work again. Once in a while it does shut down when no one is working on it (while asleep). But now it always restarts when buttoned on.
    I've done the thorough vacuuming of any dust from the unit vents. I wonder if there's anything else I should try. In most other ways the machine works pretty well and has become the family desktop for basic uses, so I'd like to keep it running if I can. A little frustrating to not be able to upgrade all programs (iTunes) to useable versions, but that's another story....
    I would appreciate any ideas about the shut down problem.
    TCC

    Option 1
    Reset your PRAM.  Press and hold down the Command Option P R keys while starting your computer.  You will hear the startup chime.  continue holding down those keys until you hear the startup chime a second time.  Release the keys.  If the computer restarts, you will need to reset your Date and Time.  It might be time to replace your PRAM battery.  The G5 iMacs require a 3 volt CR2032 lithium watch/camera battery like below:
    http://eshop.macsales.com/item/NewerTech/CR2032/
    You can find these batteries at Walmart, Kmart, Target, most local drugstore chains, for between $3-$5, or at Radio Shack for $12-$20.
    If you have any G5 iMac model EXCEPT the iSight version, you can probably do the battery install yourself.  Watch this video on upgrading your iMac's RAM to show you how to remove the back of your iMac, if you don't already know how:
    http://eshop.macsales.com/installvideos/imac_g5_mem_m/
    While you have the back off, use a can of compressed air to blow the dust out the vents at the bottom of the iMac, the fans, and anywhere else you can.  Also inspect the 28-30 capacitors on the logic board.  Look for dark spots, if they look puffy or swollen, or leaks.
    Option 2
    Reset the SMC by removing all cables (USB, Firewire, Ethernet, Modem, Power cord) from the back of your computer.  Let it sit for one minute.  Press and hold the power on button on the back of the iMac while plugging in the power cord.  Release the power on button.  Count to five, the press the power on button again.
    Option 3
    Place your original, came with the iMac when purchased install disk, into the slot on the iMac, press and hold the C key while pressing the power on button on the back of the computer.  (If you have upgraded your OS from when you purchased your iMac, example your iMac came with OS 10.3 installed, and you're now using OS 10.5, then use the OS 10.5 Retail Install disk that you had used to upgrade your OS instead of the original, came with the iMac disk.) 
    Continue holding the C key until you see the OS starting to load.  DO NOT do an OS installation.  At the top Menu bar, select Utilities or Utility, and pull down to Disk Utility.  On the left side of the window that opens,select your normal OS drive.  Click First Aid at the top middle of the window if it isn't already selected.  Click Repair Disk from the lower right area of the window.  When that is done, click Repair Permissions to the left of the Repair Disk button you clicked earlier.
    When that is done, quit Disk Utility.  From the top Menu bar (I think its under Utilities) select the Start Up Manager, and choose your normal boot volume as the startup disk.  Restart the computer.  If successful, and you've rebooted from your normal startup disk, eject the install DVD/CD, and you're good to go.
    Good luck.

  • In the last few days, I've encountered a problem with scrolling with my up & down keys. The up & down keys seem to, now function as Home & End keys. MyPage Up & Page Down keys seem to do nothing. What is wrong?

    In the last few days, I've encountered a problem with scrolling with my up & down keys. The up & down keys seem to, now function as Home & End keys. MyPage Up & Page Down keys seem to do nothing. What is wrong?

    Hit the '''F7''' key, you probably have Caret browsing turned on.
    http://kb.mozillazine.org/Accessibility.browsewithcaret

  • Snow Leopard shutting down with no warning is getting more complex!

    I have a series 1 Macbook Pro and have updated to Snow Leopard. As with most other people I immediately got problems with the "battery Service" message. So, having read all the various posts, and tried re-calibration, I bought a new battery.
    Charged fully and disconnected adaptor. The machine shut down with no warning at about 85%! I tried a few more times after fully charging the battery and it shut down a number of times - 83%, 85%, 89% and 98%. The battery shows a cycle count of 1. The last time it shut down (89%) I decided to try re-starting without plugging the adaptor back in. The machine started and ran up to the point where it properly started Snow Leopard - when it was about to change from the blue screen - at which point it shut down again. I tried this a number of times and it was absolutely conisistant, doing it every time.
    I then had the bright idea of plugging in the adaptor but watching the LED to see what happened. The LED came on green for 1 or 2 seconds, then went red. I then immediately unplugged it again. I then tried to start the machine with battery only. It started perfectly and went on running until down to 15% at which point it shut down, again with no warning. Tried re-starting - it wouldn't! Plugged the adaptor in so that it would charge the battery whilst using the machine. Then, much to my amazement, while the adaptor was still plugged in, and the battery was far from fully charged, the machine shut down - again without warning. That's "it shut down with battery installed AND mains connected". The machine then wouldn't start, with mains connected. It would switch on for a few seconds then shut down again. To get it to start I needed to remove the battery and run it on mains only.
    That's where I am at the moment, running 'mains only' with no battery installed. It looks as if Snow Leopard sets the battery monitor / charging hardware incorrectly on the MBP. Once set incorrectly it looks as if it loses itself!
    Has anyone else experienced anything like this?

    It really doesn't get any better! Well, not a lot. I decided that I'd try yet another brand new battery. I charged it fully, disconnected the mag connector and it ran happily without shutting down - hooray. However, after putting out the message about low power and about to shut down, at about 5%, it ran to about 2% and shut down without warning. It didn't go to sleep.
    I then couldn't get the machine to start again. I reset the SMC and still no joy. it would start to run, flash the screen a couple of times and then die. To get it to run I had to disconnect the battery, start it, then plug the battery back in again. Snow Leopard does appear to do something odd with the charging hardware. It appears to leave it in an odd state.
    You may be right about Battery Update 1.3, but there appears to be no way of installing it under 10.6.8 - unless you know something I don't!
    This is the current battery:
      Manufacturer:          Sony
      Device name:          ASMB012
      Pack Lot Code:          0002
      PCB Lot Code:          0000
      Firmware Version:          102a
      Hardware Revision:          0500
      Cell Revision:          0303
      Charge Information:
      Charge remaining (mAh):          3734
      Fully charged:          No
      Charging:          No
      Full charge capacity (mAh):          5205
      Health Information:
      Cycle count:          2
      Condition:          Normal
      Battery Installed:          Yes
      Amperage (mA):          -2230
      Voltage (mV):          11429
    As you can see, I'm running 'battery only' at the moment!

  • My magic mouse behaves erratically with intermittent problems - slows down, right click doesn't work, disconnects for a few seconds then reconnects. Anyone suggest what I could do to fix this?

    My magic mouse behaves erratically with intermittent problems - slows down, right click doesn't work, disconnects for a few seconds then reconnects. Anyone suggest what I could do to fix this?

    I just figured out the print quality issue for my wife with her new iMac and new printer.
    She replaced both at once and she couldn't understand why her Artisan 730 was lower quality then her Epson R280 when they had the same specs.
    Turns out the newer printer had the option to connect via wifi which we used during setup.
    The driver options are completely different depending on how you connect.
    Once I connected via USB the correct options were available and the print quality was better.
    Looking at the R2400 it dies not have wifi, but while researching the problem for my wife someone esle was having an issue updating to the latest printer driver.
    If you go into the print utility from the Printer and Scanner system preference and under the general tab you should have driver 5.5.
    One user had to delete the old printer driver before Software Update loaded the newer printer driver.
    https://discussions.apple.com/message/15947486#15947486
    On my MacBook Pro (w Snow Leopard) I always had to reconnect my wifi at home when it woke up. I upgraded my router from an old Netgear to a newer N D-Link and stopped having to do that.
    I would be surprised you would have that problem with an Airport Extreme, you might check to see if there is a firmware update for it.

  • Help needed with populating a drop-down list from an Access Database

    Topic
    data drop-down list
    Jason Murthy - 11:39am Feb 14, 2005 Pacific
    Hello,
    I am trying to use the data drop-down list from the custom library. I enter the name of my data connection and the other 2 variables in quotes when they are initialized, just like the example says to, but it still doesn't work. Anyone have any thoughts?
    Thanks,
    Jason
    Reply To This Discussion | Back to Topic List | Bookmark | Change Subscription
    To start a NEW discussion click on the Back to Topic List link and select Add Topic.
    If you are in an archive forum please go up to the main topic list (archives are read only).
    Messages 11 messages. Displaying 10 through 11.
    First Previous Next Last Show All Messages
    Denzil White - 5:46am Jul 28, 05 PST (#10 of 11)
    Oh and before you say anything more I have also tried changing it from Javascript to the FormCalc, and no diff, maybe I am more stupid than I realised, heh,heh
    Post Reply | Bookmark
    Henk Pisuisse - 12:06am Aug 9, 05 PST (#11 of 11)
    I am having trouble (sleepless nights) with populating a drop-down list from an Access Database. The result is: I only get the first record from the data connection. So the connection works but I cannot go through the other records. Maybe there is an other way to do this.
    I am trying to selectively fill a form with data from an MS-access database.
    I hope someone can help me.
    [email protected]
    The Netherlands (small country in Europe)

    If you email the access DB and the form to [email protected], I will try to take a look at it for you.

  • How to create a button which scrolls down with the page automatically?

    Hello,
    I wanted to create a button which takes u back to the top of the page when pressed on, but I was wondering how to make it scroll down with the page on the right side automatically when some1 scrolls down the page.
    An example I saw was on tumblr.com
    P.S I'm a newbie, so please explain it clearly ;d.
    Thanks.

    Create a button, position it as fixed at the top right say,
    a button{
              position:fixed;
              top:50px;
              right:50px; 
    <a href="#home"><button> Button</button></a>
    The <a> is the link to take you to the top of the page
    Just be sure to set the id home on an element at the top of the page

Maybe you are looking for