Search the web
Sign In
New User? Sign Up
ms_access · Help and advice for users of MS access
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 15018 - 15047 of 21712   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
15018
Hi everyone I have problem with crosstab reports please help me. I have created 2 cross CTab queries and from that query I made 3rd query which is select...
wahabrajiwate
Offline Send Email
Aug 1, 2004
10:39 am
15019
Hi I want to create one table from the followin 2 trables please letme know what is the good way for this one. I want all the records from my both tables will...
wahabrajiwate
Offline Send Email
Aug 1, 2004
10:55 am
15020
Wahab- You can find the code to create a dynamic crosstab at: http://groups.yahoo.com/group/ms_access/message/14978 An alternative is to include an IN clause...
John Viescas
jlviescas
Offline Send Email
Aug 1, 2004
11:35 am
15021
Ah, this is a different problem altogether! First, it looks like RVNo, DebitAcct, and CreditAcct are integers. You should not be using Double if that's the...
John Viescas
jlviescas
Offline Send Email
Aug 1, 2004
12:19 pm
15022
Hi, I'm trying to save a report to an excel file & I want it to be saved in the folder specified by the Windows environment variable %TEMP% for portability. I...
tombrown1965
Offline Send Email
Aug 1, 2004
12:55 pm
15023
You need to pass Environ a string or a number. Unless TEMP is a string variable initialized to "TEMP", you'll get an error. ?Environ("Temp") .. in the...
John Viescas
jlviescas
Offline Send Email
Aug 1, 2004
1:38 pm
15024
Hey everyone, I am a newbie at Access and have playing around with the Northwind database. Is there a place online that will show how certain parts of the...
Gerry Hoch
gerry_hoch
Offline Send Email
Aug 1, 2004
2:38 pm
15025
Gerry- There are only two places in Northwind that use filters. One is on the Suppliers form when you click the Review Products button. The code is as ...
John Viescas
jlviescas
Offline Send Email
Aug 1, 2004
3:54 pm
15026
... integers. You ... should be ... terrible ... when you do ... Currency data ... CreditAmt ... DebitAcct, 0 ... use it as ... letme ... from ... CreditAmt ...
wahabrajiwate
Offline Send Email
Aug 2, 2004
4:24 am
15027
Dear John, I've tried the method you mention earlier, but my knowlodge is pretty much limited. I hope you can show me a clearer picture, what are the steps I...
arnold choo
arnoldcch
Offline Send Email
Aug 2, 2004
8:40 am
15028
Arnold- Please tell me your table name and the relevant field names you're displaying on the form. I can't construct a correct DCount without that info. John...
John Viescas
jlviescas
Offline Send Email
Aug 2, 2004
12:21 pm
15029
Hello all, I'm having a brain fart this morning. In order to sort a column, then apply another sort to the next column must I create a query on my original...
David Chaney
dave297
Offline Send Email
Aug 2, 2004
4:14 pm
15030
David- Yes, a query is the way to go - unless the result must go into a report. If you need a report, simply specify the sort sequence you want in the Sorting...
John Viescas
jlviescas
Offline Send Email
Aug 2, 2004
4:47 pm
15031
Thanks John! David -- ... David Chaney david.chaney@......
David Chaney
dave297
Offline Send Email
Aug 2, 2004
5:05 pm
15032
Can someone please help? Private Sub Combo63_NotInList(NewData As String, Response As Integer) ' Ask the user whether to add a value to the list. Dim...
David McNamara
themaxattelus
Offline Send Email
Aug 2, 2004
6:59 pm
15033
David- Sounds like you're missing a reference to the DAO library. You should probably also delete the reference to ADO. Choose Tools / References when you're...
John Viescas
jlviescas
Offline Send Email
Aug 2, 2004
11:31 pm
15034
Hi Everyone, I am hoping somebody knows how to do this, how can I get a column that checks the records horizontally for a maximum. I know how to do Max...
Thomas Emerson Jr
tommyjr97408
Offline Send Email
Aug 3, 2004
12:18 am
15035
i have a page that will always display whatever i put in my database! but when i delete all the data inside my database, there is an error that tell me that i...
mazda_offroadriders
mazda_offroa...
Offline Send Email
Aug 3, 2004
2:04 am
15036
... Sorry, I couldn't understand what you are doing and what you would like to do. It may just be that you are using the term "database" when you don't really...
Brett Collings
zkbac
Offline Send Email
Aug 3, 2004
2:24 am
15037
sorry about that... ok.. i have a database(customer.mdb)..inside them, i have created 5 tables (tb1.mdb , tb2.mdb ,tb3.mdb ,tb4.mdb ,tb5.mdb), each tables will...
mazda_offroadriders
mazda_offroa...
Offline Send Email
Aug 3, 2004
2:39 am
15038
No, your problem is not understandable. What is in your 5 tables? The names certainly don't give any clue. In my Inside Out book, you can find a ...
John Viescas
jlviescas
Offline Send Email
Aug 3, 2004
3:27 am
15039
Hi John Viescas Thank you very much for your quick reply and tips about the properties and format. I convert the double to integer and currency format and it...
wahabrajiwate
Offline Send Email
Aug 3, 2004
4:27 am
15040
Dear John, The table uses to hold the data is: SalesTransactionSub; fields are: ReceiptNo, Item, Quantity, Amount, TotalAppearance. But John, I reckon could it...
arnold choo
arnoldcch
Offline Send Email
Aug 3, 2004
8:17 am
15041
Wahab- Currency has four decimal places, so that should handle the money in Kuwait. Note that the default Decimal Places is 2 (this affects the display only), ...
John Viescas
jlviescas
Offline Send Email
Aug 3, 2004
12:12 pm
15042
Yes, use DSum. You need to filter each one on the current row value of Item, like this: =DSum("[Quantity]","SalesTransactionSub","[Item]='" & [Item] & "'") ...
John Viescas
jlviescas
Offline Send Email
Aug 3, 2004
12:36 pm
15043
Dear John, OoooYes! I'm so happy, finally I can put it to work! Thanks John! One more question relates to this; you see, the =DSum....... only sum up each Item...
arnold choo
arnoldcch
Offline Send Email
Aug 3, 2004
3:29 pm
15044
Simply add to the predicate in the third parameter. Is ReceiptNo text or a number? If it's text, do: =DSum("[Quantity]","SalesTransactionSub","[Item]='" &...
John Viescas
jlviescas
Offline Send Email
Aug 3, 2004
3:50 pm
15045
Dear John, OooooooYes! You are so wonderful! Thousands thanks!!!!!!!!!!!!! Good day mate! ~Arnold~ John Viescas <JohnV@...> wrote: Simply add to the...
arnold choo
arnoldcch
Offline Send Email
Aug 3, 2004
4:07 pm
15046
Hi all, I have a treeview in a form when I click in one node all input box´s became locked, this only happens when I click in one tree node , before that all...
Antonio Roque
aadroque
Offline Send Email
Aug 4, 2004
12:05 am
15047
John, Thank you so much but I am still lost. Do I have to add some extra library or ActiveX? Thanks again, David ... From: "John Viescas" <JohnV@...> ...
David McNamara
themaxattelus
Offline Send Email
Aug 4, 2004
1:37 am
Messages 15018 - 15047 of 21712   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help