A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

ListBox column has lost formatting.



 
 
Thread Tools Display Modes
  #1  
Old November 30th, 2007, 01:19 AM posted to microsoft.public.access.forms
Frank Martin
external usenet poster
 
Posts: 162
Default ListBox column has lost formatting.

Suddenly the currency columns in my list
boxes have lost the currency formatting.

The underlying queries are OK in this
respect.

Please help.


  #2  
Old November 30th, 2007, 01:48 AM posted to microsoft.public.access.forms
AccessVandal via AccessMonster.com
external usenet poster
 
Posts: 461
Default ListBox column has lost formatting.

Hi Frank,

Post your SQL string for the listbox. Most likely the field "Format
("somefield", "$#.##") As SomeName" is missing.

Frank Martin wrote:
Suddenly the currency columns in my list
boxes have lost the currency formatting.
The underlying queries are OK in this
respect.
Please help.


--
Please Rate the posting if helps you

Message posted via http://www.accessmonster.com

  #3  
Old November 30th, 2007, 04:05 AM posted to microsoft.public.access.forms
Frank Martin
external usenet poster
 
Posts: 162
Default ListBox column has lost formatting.

Thank you: here is the SQL:

SELECT DISTINCTROW
Qry081299INVOICEforFormEACH.AddressesID,
Qry081299INVOICEforFormEACH.People,
Qry081299INVOICEforFormEACH.InvoiceDate,
Qry081299INVOICEforFormEACH.InvoiceNo,
Qry081299INVOICEforFormEACH.SumOfExpr3,
Qry081299INVOICEforFormEACH.OrderID
FROM Qry081299INVOICEforFormEACH
ORDER BY
Qry081299INVOICEforFormEACH.InvoiceNo DESC;

(The column in question is: "SumOfExpr3")


Regards, Frank



"AccessVandal via AccessMonster.com"
u18947@uwe wrote in message
news:7bf64fe6ecb71@uwe...
Hi Frank,

Post your SQL string for the listbox. Most
likely the field "Format
("somefield", "$#.##") As SomeName" is
missing.

Frank Martin wrote:
Suddenly the currency columns in my list
boxes have lost the currency formatting.
The underlying queries are OK in this
respect.
Please help.


--
Please Rate the posting if helps you

Message posted via
http://www.accessmonster.com



  #4  
Old November 30th, 2007, 08:53 AM posted to microsoft.public.access.forms
AccessVandal via AccessMonster.com
external usenet poster
 
Posts: 461
Default ListBox column has lost formatting.

Hi Frank,

It's very likely that you have change the DataType in your table.

What about the Query "Qry081299INVOICEforFormEACH" for the field "SumOfExpr3"?

Did the field in this query was correctly formated?

Frank Martin wrote:
Thank you: here is the SQL:
SELECT DISTINCTROW
Qry081299INVOICEforFormEACH.AddressesID,
Qry081299INVOICEforFormEACH.People,
Qry081299INVOICEforFormEACH.InvoiceDate,
Qry081299INVOICEforFormEACH.InvoiceNo,
Qry081299INVOICEforFormEACH.SumOfExpr3,
Qry081299INVOICEforFormEACH.OrderID
FROM Qry081299INVOICEforFormEACH
ORDER BY
Qry081299INVOICEforFormEACH.InvoiceNo DESC;

(The column in question is: "SumOfExpr3")


--
Please Rate the posting if helps you

Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/For...forms/200711/1

  #5  
Old November 30th, 2007, 02:10 PM posted to microsoft.public.access.forms
Douglas J. Steele
external usenet poster
 
Posts: 9,313
Default ListBox column has lost formatting.

SELECT DISTINCTROW
Qry081299INVOICEforFormEACH.AddressesID,
Qry081299INVOICEforFormEACH.People,
Qry081299INVOICEforFormEACH.InvoiceDate,
Qry081299INVOICEforFormEACH.InvoiceNo,
Format(Qry081299INVOICEforFormEACH.SumOfExpr3, "Currency"),
Qry081299INVOICEforFormEACH.OrderID
FROM Qry081299INVOICEforFormEACH
ORDER BY
Qry081299INVOICEforFormEACH.InvoiceNo DESC;


--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"Frank Martin" wrote in message
...
Thank you: here is the SQL:

SELECT DISTINCTROW Qry081299INVOICEforFormEACH.AddressesID,
Qry081299INVOICEforFormEACH.People,
Qry081299INVOICEforFormEACH.InvoiceDate,
Qry081299INVOICEforFormEACH.InvoiceNo,
Qry081299INVOICEforFormEACH.SumOfExpr3,
Qry081299INVOICEforFormEACH.OrderID
FROM Qry081299INVOICEforFormEACH
ORDER BY Qry081299INVOICEforFormEACH.InvoiceNo DESC;

(The column in question is: "SumOfExpr3")


Regards, Frank



"AccessVandal via AccessMonster.com" u18947@uwe wrote in message
news:7bf64fe6ecb71@uwe...
Hi Frank,

Post your SQL string for the listbox. Most likely the field "Format
("somefield", "$#.##") As SomeName" is missing.

Frank Martin wrote:
Suddenly the currency columns in my list
boxes have lost the currency formatting.
The underlying queries are OK in this
respect.
Please help.


--
Please Rate the posting if helps you

Message posted via http://www.accessmonster.com





 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 11:28 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.