473,804 Members | 3,532 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Preventing a report from being blank when one field is null

3 New Member
Hi

I wonder if anyone can help.

I have a report in Access 2000, which works perfectly and displays all the information until I select a period where one, or more, of the fields is blank.

Example 1:

I run the report and select data from 05/04/06 to 04/04/08 and get the report no problem.

Example 2:

I run the report and select data from 05/04/07 to 04/04/08 and the whole report in blank.

I think I have traced the problem to the fact that the "Subscripti on" field is blank because I have not paid my yearly subscription yet.

To get around this I entered a record for "Subscripti on" and now the report works OK in example 2.

Unfortunately I now need to run the report for a certain three-month period but again the report is blank because "Subscripti on" and maybe some other fields do not have any records for the period I am interested in.

I am presuming that there is something simple that I need to do but don't know what.

I would appreciate it if someone could tell me how to deal with this.

Thanks in anticipation

briggal1
Oct 11 '07 #1
6 1842
Jim Doherty
897 Recognized Expert Contributor
Hi

I wonder if anyone can help.

I have a report in Access 2000, which works perfectly and displays all the information until I select a period where one, or more, of the fields is blank.

Example 1:

I run the report and select data from 05/04/06 to 04/04/08 and get the report no problem.

Example 2:

I run the report and select data from 05/04/07 to 04/04/08 and the whole report in blank.

I think I have traced the problem to the fact that the "Subscripti on" field is blank because I have not paid my yearly subscription yet.

To get around this I entered a record for "Subscripti on" and now the report works OK in example 2.

Unfortunately I now need to run the report for a certain three-month period but again the report is blank because "Subscripti on" and maybe some other fields do not have any records for the period I am interested in.

I am presuming that there is something simple that I need to do but don't know what.

I would appreciate it if someone could tell me how to deal with this.

Thanks in anticipation

briggal1
Instinct tells me that you may have an INNER JOIN between tables which should be a LEFT join in your SQL but this is a guess without having the structure. Post your SQL statement

Regards

Jim
Oct 11 '07 #2
briggal1
3 New Member
Instinct tells me that you may have an INNER JOIN between tables which should be a LEFT join in your SQL but this is a guess without having the structure. Post your SQL statement

Regards

Jim
Thanks Jim

I don't have any joins. The query under the report just bring together 13 other queries, the SQL is:

SELECT qryIncomeFromEb ay.SumOfAmount, qryIncomeFromMa rkets.SumOfAmou nt, qryIncomrFromMi sc.SumOfAmount, qryIncomeFromIn ternet.SumOfAmo unt, qryOutletExpend iture.SumOfCost , qryVehicleCosts ByPeriod.SumOfP rice, qrySubscription sCostsByPeriod. SumOfPrice, qryEbayPayPalFe es.SumOfPrice, qryStockCostByP eriod.SumOfPric e, qrySundriesCost sByPeriod.SumOf Price, qryTotalPostage ByPeriod.TotalP ostage, qryTelephoneByP eriod.SumOfPric e, qryAdvertisinfB yPeriod.SumOfPr ice
FROM qryIncomeFromEb ay, qryIncomeFromMa rkets, qryIncomrFromMi sc, qryOutletExpend iture, qryVehicleCosts ByPeriod, qrySubscription sCostsByPeriod, qryEbayPayPalFe es, qryStockCostByP eriod, qrySundriesCost sByPeriod, qryTotalPostage ByPeriod, qryTelephoneByP eriod, qryAdvertisinfB yPeriod, qryIncomeFromIn ternet;

Each of the underlying queries are basically all the same as the one below:

SELECT qryMoneyOutByPe riod.Category, Sum(qryMoneyOut ByPeriod.Price) AS SumOfPrice
FROM qryMoneyOutByPe riod
GROUP BY qryMoneyOutByPe riod.Category
HAVING (((qryMoneyOutB yPeriod.Categor y)="Stock"));

And they all start with this 1 of 3 queries where you can enter the start and end dates:

SELECT tblMoneyOut.Mon eyOutID, tblMoneyOut.Dat e, tblMoneyOut.Eba y, tblMoneyOut.Cat egory, tblMoneyOut.Sup plier, tblMoneyOut.Ite mNumber, tblMoneyOut.Tit le, tblMoneyOut.Pri ce, tblMoneyOut.Pos tage, tblMoneyOut.Pay mentMethod, tblMoneyOut.Col lected, tblMoneyOut.Com ment
FROM tblMoneyOut
WHERE (((tblMoneyOut. Date) Between [Start of currect tax year (05/04/??)] And [End of current tax year (04/04/??)]))
ORDER BY tblMoneyOut.Mon eyOutID;

The first 3 queries are Money-in, Money-out & Outlets. These just bring in all fields from the underlying tables but allow you to select a date range.

The next layer of queries picks out certain data such as outlet expenditure, postage, stock costs etc.

The final query just has brings together all the previous queries so they can all be displayed on the same report.

Does this help?

Thanks

Allan
Oct 11 '07 #3
Jim Doherty
897 Recognized Expert Contributor
Thanks Jim

I don't have any joins. The query under the report just bring together 13 other queries, the SQL is:

SELECT qryIncomeFromEb ay.SumOfAmount, qryIncomeFromMa rkets.SumOfAmou nt, qryIncomrFromMi sc.SumOfAmount, qryIncomeFromIn ternet.SumOfAmo unt, qryOutletExpend iture.SumOfCost , qryVehicleCosts ByPeriod.SumOfP rice, qrySubscription sCostsByPeriod. SumOfPrice, qryEbayPayPalFe es.SumOfPrice, qryStockCostByP eriod.SumOfPric e, qrySundriesCost sByPeriod.SumOf Price, qryTotalPostage ByPeriod.TotalP ostage, qryTelephoneByP eriod.SumOfPric e, qryAdvertisinfB yPeriod.SumOfPr ice
FROM qryIncomeFromEb ay, qryIncomeFromMa rkets, qryIncomrFromMi sc, qryOutletExpend iture, qryVehicleCosts ByPeriod, qrySubscription sCostsByPeriod, qryEbayPayPalFe es, qryStockCostByP eriod, qrySundriesCost sByPeriod, qryTotalPostage ByPeriod, qryTelephoneByP eriod, qryAdvertisinfB yPeriod, qryIncomeFromIn ternet;

Each of the underlying queries are basically all the same as the one below:

SELECT qryMoneyOutByPe riod.Category, Sum(qryMoneyOut ByPeriod.Price) AS SumOfPrice
FROM qryMoneyOutByPe riod
GROUP BY qryMoneyOutByPe riod.Category
HAVING (((qryMoneyOutB yPeriod.Categor y)="Stock"));

And they all start with this 1 of 3 queries where you can enter the start and end dates:

SELECT tblMoneyOut.Mon eyOutID, tblMoneyOut.Dat e, tblMoneyOut.Eba y, tblMoneyOut.Cat egory, tblMoneyOut.Sup plier, tblMoneyOut.Ite mNumber, tblMoneyOut.Tit le, tblMoneyOut.Pri ce, tblMoneyOut.Pos tage, tblMoneyOut.Pay mentMethod, tblMoneyOut.Col lected, tblMoneyOut.Com ment
FROM tblMoneyOut
WHERE (((tblMoneyOut. Date) Between [Start of currect tax year (05/04/??)] And [End of current tax year (04/04/??)]))
ORDER BY tblMoneyOut.Mon eyOutID;

The first 3 queries are Money-in, Money-out & Outlets. These just bring in all fields from the underlying tables but allow you to select a date range.

The next layer of queries picks out certain data such as outlet expenditure, postage, stock costs etc.

The final query just has brings together all the previous queries so they can all be displayed on the same report.

Does this help?

Thanks

Allan
Of sorts.. its going to take me a short while to replicate that this end recreating tables and the queries. Like Arnie once said...I,ll be back

Regards

Jim
Oct 11 '07 #4
Jim Doherty
897 Recognized Expert Contributor
Thanks Jim

I don't have any joins. The query under the report just bring together 13 other queries, the SQL is:

SELECT qryIncomeFromEb ay.SumOfAmount, qryIncomeFromMa rkets.SumOfAmou nt, qryIncomrFromMi sc.SumOfAmount, qryIncomeFromIn ternet.SumOfAmo unt, qryOutletExpend iture.SumOfCost , qryVehicleCosts ByPeriod.SumOfP rice, qrySubscription sCostsByPeriod. SumOfPrice, qryEbayPayPalFe es.SumOfPrice, qryStockCostByP eriod.SumOfPric e, qrySundriesCost sByPeriod.SumOf Price, qryTotalPostage ByPeriod.TotalP ostage, qryTelephoneByP eriod.SumOfPric e, qryAdvertisinfB yPeriod.SumOfPr ice
FROM qryIncomeFromEb ay, qryIncomeFromMa rkets, qryIncomrFromMi sc, qryOutletExpend iture, qryVehicleCosts ByPeriod, qrySubscription sCostsByPeriod, qryEbayPayPalFe es, qryStockCostByP eriod, qrySundriesCost sByPeriod, qryTotalPostage ByPeriod, qryTelephoneByP eriod, qryAdvertisinfB yPeriod, qryIncomeFromIn ternet;

Each of the underlying queries are basically all the same as the one below:

SELECT qryMoneyOutByPe riod.Category, Sum(qryMoneyOut ByPeriod.Price) AS SumOfPrice
FROM qryMoneyOutByPe riod
GROUP BY qryMoneyOutByPe riod.Category
HAVING (((qryMoneyOutB yPeriod.Categor y)="Stock"));

And they all start with this 1 of 3 queries where you can enter the start and end dates:

SELECT tblMoneyOut.Mon eyOutID, tblMoneyOut.Dat e, tblMoneyOut.Eba y, tblMoneyOut.Cat egory, tblMoneyOut.Sup plier, tblMoneyOut.Ite mNumber, tblMoneyOut.Tit le, tblMoneyOut.Pri ce, tblMoneyOut.Pos tage, tblMoneyOut.Pay mentMethod, tblMoneyOut.Col lected, tblMoneyOut.Com ment
FROM tblMoneyOut
WHERE (((tblMoneyOut. Date) Between [Start of currect tax year (05/04/??)] And [End of current tax year (04/04/??)]))
ORDER BY tblMoneyOut.Mon eyOutID;

The first 3 queries are Money-in, Money-out & Outlets. These just bring in all fields from the underlying tables but allow you to select a date range.

The next layer of queries picks out certain data such as outlet expenditure, postage, stock costs etc.

The final query just has brings together all the previous queries so they can all be displayed on the same report.

Does this help?

Thanks

Allan

Allan,

Ok!... you say TABLE(S) but the SQL post only relates to a source table of tblMoneyOut. I am working blind other than the info you provided.

I can visualise from the SQL your overall structure but it leaves me guessing the formal structure of your underlying queries particularly wth regard to the HAVING clause for instance ....Ebay is referred to .... I am guessing thats part of your having clause in the specific underlying query mentioned as it is a column in your table.

So.... the Ebay query in itself will be subtley different from the others in what it has to return.

The word 'basically' can mean my end the difference between you having correctly set up queries designed to properly return data or not. I'm sure you can understand me on that one :)

I originally thought that your problem might be related to perhaps an INNER JOIN in your SQL when it should be a LEFT JOIN? well the same fear is there and its kind of related in that having looked at your query syntax there is NO JOINS at all!... when you should have a LEFT JOIN

Now this...... is perfectly fine provided you have values that exist for each and every sub query contained within the overall query you will have a dataset returned summing each of the elements referred to.

But.....that is not what you want query wise!

If you have data for the period for Markets lets say and none for Ebay then just because Ebay has none you would still want the data back for Markets!

You have already identified this yourself in that you believe the actual issue will be with your Subscription records? (or lack of them) in other words no data for subscriptions for the period results in no data returned overall.

The problem is fundamentally concerned with the NO JOINs in your FROM clause section of the SQL in that, how shall we put it hmmm...the three musketeers principle "all for one and one for all?" (all must have data or no data at all) apply.... if you get me.

Your answer is to LEFT join with the original table which in the example is tblMoneyOut.

Save your overarching query as something else and work on that (until you get the syntax right and tested through) as what I am going to tell you is this....

The FROM clause of the overarching query (the one that brings everything together should have the source tables included in the top grey section of the Access query grid display window.

You then need to JOIN a line between the source table and its related query and then double click the line to bring up the JOIN properties box. You then need to select the option that says...

"Include All Records from tblMoneyOut and only those records from (whatever sub query you are working with ie qryIncomefrom Ebay) where the join fields are equal"

The net effect is this... the SQL examines and returns all records from the source table irrespective of whether there is a defining record within the related query and thus returns something even if it is a blank value (this way it becomes a displayable 'cell' if you like within your tabular dataset. If you are not sure on this then experiment with LEFT joins, INNER JOINS and RIGHT JOINS or research SQL help on it. To go into it within this thread would require another chapter of war and peace.

Here is a typical example of what you should be seeing in the SQL window

Expand|Select|Wrap|Line Numbers
  1.  
  2. FROM (tblMoneyOut LEFT JOIN qryIncomeFromEbay ON tblMoneyOut.Category = qryIncomeFromEbay.Category) LEFT JOIN qryIncomeFromMarkets ON tblMoneyOut.Category = qryIncomeFromMarkets.Category
  3.  
I cannot complete it for you! because it really demands that I see your entire structure. Remember I can only go on what you have provided.


I hope this helps you

Regards

Jim :)
Oct 12 '07 #5
briggal1
3 New Member
Allan,

Ok!... you say TABLE(S) but the SQL post only relates to a source table of tblMoneyOut. I am working blind other than the info you provided.

I can visualise from the SQL your overall structure but it leaves me guessing the formal structure of your underlying queries particularly wth regard to the HAVING clause for instance ....Ebay is referred to .... I am guessing thats part of your having clause in the specific underlying query mentioned as it is a column in your table.

So.... the Ebay query in itself will be subtley different from the others in what it has to return.

The word 'basically' can mean my end the difference between you having correctly set up queries designed to properly return data or not. I'm sure you can understand me on that one :)

I originally thought that your problem might be related to perhaps an INNER JOIN in your SQL when it should be a LEFT JOIN? well the same fear is there and its kind of related in that having looked at your query syntax there is NO JOINS at all!... when you should have a LEFT JOIN

Now this...... is perfectly fine provided you have values that exist for each and every sub query contained within the overall query you will have a dataset returned summing each of the elements referred to.

But.....that is not what you want query wise!

If you have data for the period for Markets lets say and none for Ebay then just because Ebay has none you would still want the data back for Markets!

You have already identified this yourself in that you believe the actual issue will be with your Subscription records? (or lack of them) in other words no data for subscriptions for the period results in no data returned overall.

The problem is fundamentally concerned with the NO JOINs in your FROM clause section of the SQL in that, how shall we put it hmmm...the three musketeers principle "all for one and one for all?" (all must have data or no data at all) apply.... if you get me.

Your answer is to LEFT join with the original table which in the example is tblMoneyOut.

Save your overarching query as something else and work on that (until you get the syntax right and tested through) as what I am going to tell you is this....

The FROM clause of the overarching query (the one that brings everything together should have the source tables included in the top grey section of the Access query grid display window.

You then need to JOIN a line between the source table and its related query and then double click the line to bring up the JOIN properties box. You then need to select the option that says...

"Include All Records from tblMoneyOut and only those records from (whatever sub query you are working with ie qryIncomefrom Ebay) where the join fields are equal"

The net effect is this... the SQL examines and returns all records from the source table irrespective of whether there is a defining record within the related query and thus returns something even if it is a blank value (this way it becomes a displayable 'cell' if you like within your tabular dataset. If you are not sure on this then experiment with LEFT joins, INNER JOINS and RIGHT JOINS or research SQL help on it. To go into it within this thread would require another chapter of war and peace.

Here is a typical example of what you should be seeing in the SQL window

Expand|Select|Wrap|Line Numbers
  1.  
  2. FROM (tblMoneyOut LEFT JOIN qryIncomeFromEbay ON tblMoneyOut.Category = qryIncomeFromEbay.Category) LEFT JOIN qryIncomeFromMarkets ON tblMoneyOut.Category = qryIncomeFromMarkets.Category
  3.  
I cannot complete it for you! because it really demands that I see your entire structure. Remember I can only go on what you have provided.


I hope this helps you

Regards

Jim :)
Jim

Thanks for that, I have tried what you suggested but I still get no results or it won't even run the query because the joins are wrong.

Maybe a little more explanation is called for.

My database consists of two tables, tblMoneyIn & tblMoneyOut.

tblMoneyIn records the money in from different sources such as markets, ebay, website etc.

tblMoneyOut records all money out such as stock purchases, vehicle expenses, sundries, subscriptions, etc.

The report I am producing is my Profit & Loss report and each category needs displaying separately as a total for the period. I then use calculated fields to total Money in and money out and the differnece between them.

I am doing this by first creating 2 queries each pulling all data from it's respective table within a given date range, see example:

qryMoneyOutByPe riod
Expand|Select|Wrap|Line Numbers
  1. ...SELECT tblMoneyOut.MoneyOutID, tblMoneyOut.Date, tblMoneyOut.Ebay, tblMoneyOut.Category, tblMoneyOut.Supplier, tblMoneyOut.ItemNumber, tblMoneyOut.Title, tblMoneyOut.Price, tblMoneyOut.Postage, tblMoneyOut.PaymentMethod, tblMoneyOut.Collected, tblMoneyOut.Comment
  2. FROM tblMoneyOut
  3. WHERE (((tblMoneyOut.Date) Between [Start of currect tax year (05/04/??)] And [End of current tax year (04/04/??)]))
  4. ORDER BY tblMoneyOut.MoneyOutID;...
Next I have created a number of queries to SUM each of the categories, see example of subscriptions by period:

qrySubscription sCostsByPeriod
Expand|Select|Wrap|Line Numbers
  1. ...SELECT qryMoneyOutByPeriod.Category, Sum(qryMoneyOutByPeriod.Price) AS SumOfPrice
  2. FROM qryMoneyOutByPeriod
  3. GROUP BY qryMoneyOutByPeriod.Category
  4. HAVING (((qryMoneyOutByPeriod.Category)="Subscription"));...
There are 13 of these queries in all.

I then use another query to bring all these 13 together, see example:

qryProfitAndLos sByPeriod
[CODE}...SELECT qryIncomeFromEb ay.SumOfAmount, qryIncomeFromMa rkets.SumOfAmou nt, qryIncomrFromMi sc.SumOfAmount, qryIncomeFromIn ternet.SumOfAmo unt, qryOutletExpend iture.SumOfCost , qryVehicleCosts ByPeriod.SumOfP rice, qrySubscription sCostsByPeriod. SumOfPrice, qryEbayPayPalFe es.SumOfPrice, qryStockCostByP eriod.SumOfPric e, qrySundriesCost sByPeriod.SumOf Price, qryTotalPostage ByPeriod.TotalP ostage, qryTelephoneByP eriod.SumOfPric e, qryAdvertisinfB yPeriod.SumOfPr ice
FROM qryIncomeFromEb ay, qryIncomeFromMa rkets, qryIncomrFromMi sc, qryOutletExpend iture, qryVehicleCosts ByPeriod, qrySubscription sCostsByPeriod, qryEbayPayPalFe es, qryStockCostByP eriod, qrySundriesCost sByPeriod, qryTotalPostage ByPeriod, qryTelephoneByP eriod, qryAdvertisinfB yPeriod, qryIncomeFromIn ternet;...[/code]

I then use the above query as the source for the report.

Does this help?

Thanks Allan
Oct 12 '07 #6
Jim Doherty
897 Recognized Expert Contributor
Jim

Thanks for that, I have tried what you suggested but I still get no results or it won't even run the query because the joins are wrong.

Maybe a little more explanation is called for.

My database consists of two tables, tblMoneyIn & tblMoneyOut.

tblMoneyIn records the money in from different sources such as markets, ebay, website etc.

tblMoneyOut records all money out such as stock purchases, vehicle expenses, sundries, subscriptions, etc.

The report I am producing is my Profit & Loss report and each category needs displaying separately as a total for the period. I then use calculated fields to total Money in and money out and the differnece between them.

I am doing this by first creating 2 queries each pulling all data from it's respective table within a given date range, see example:

qryMoneyOutByPe riod
Expand|Select|Wrap|Line Numbers
  1. ...SELECT tblMoneyOut.MoneyOutID, tblMoneyOut.Date, tblMoneyOut.Ebay, tblMoneyOut.Category, tblMoneyOut.Supplier, tblMoneyOut.ItemNumber, tblMoneyOut.Title, tblMoneyOut.Price, tblMoneyOut.Postage, tblMoneyOut.PaymentMethod, tblMoneyOut.Collected, tblMoneyOut.Comment
  2. FROM tblMoneyOut
  3. WHERE (((tblMoneyOut.Date) Between [Start of currect tax year (05/04/??)] And [End of current tax year (04/04/??)]))
  4. ORDER BY tblMoneyOut.MoneyOutID;...
Next I have created a number of queries to SUM each of the categories, see example of subscriptions by period:

qrySubscription sCostsByPeriod
Expand|Select|Wrap|Line Numbers
  1. ...SELECT qryMoneyOutByPeriod.Category, Sum(qryMoneyOutByPeriod.Price) AS SumOfPrice
  2. FROM qryMoneyOutByPeriod
  3. GROUP BY qryMoneyOutByPeriod.Category
  4. HAVING (((qryMoneyOutByPeriod.Category)="Subscription"));...
There are 13 of these queries in all.

I then use another query to bring all these 13 together, see example:

qryProfitAndLos sByPeriod
[CODE}...SELECT qryIncomeFromEb ay.SumOfAmount, qryIncomeFromMa rkets.SumOfAmou nt, qryIncomrFromMi sc.SumOfAmount, qryIncomeFromIn ternet.SumOfAmo unt, qryOutletExpend iture.SumOfCost , qryVehicleCosts ByPeriod.SumOfP rice, qrySubscription sCostsByPeriod. SumOfPrice, qryEbayPayPalFe es.SumOfPrice, qryStockCostByP eriod.SumOfPric e, qrySundriesCost sByPeriod.SumOf Price, qryTotalPostage ByPeriod.TotalP ostage, qryTelephoneByP eriod.SumOfPric e, qryAdvertisinfB yPeriod.SumOfPr ice
FROM qryIncomeFromEb ay, qryIncomeFromMa rkets, qryIncomrFromMi sc, qryOutletExpend iture, qryVehicleCosts ByPeriod, qrySubscription sCostsByPeriod, qryEbayPayPalFe es, qryStockCostByP eriod, qrySundriesCost sByPeriod, qryTotalPostage ByPeriod, qryTelephoneByP eriod, qryAdvertisinfB yPeriod, qryIncomeFromIn ternet;...[/code]

I then use the above query as the source for the report.

Does this help?

Thanks Allan
Alan,

Check your PM's please

Jim
Oct 12 '07 #7

Sign in to post your reply or Sign up for a free account.

Similar topics

5
1847
by: MX1 | last post by:
Hi, I have a report with Name1 and Name2 in the address section . Sometimes, Name2 is not populated with data via the query that feeds the report. Unfortunately, the blank line stays in the report. I've tried experimenting with the Can Shrink property to no avail. Any tips on eliminating blank lines the right way would be much appreciated. thanks!
6
2732
by: MX1 | last post by:
Please help if you can. I have a form with an address field. There are 6 fields: Name1 Name2 Address1 Address2 CityStateZip Country
3
2745
by: ahaque38 | last post by:
Hello. Using A2K SP3, I am having the following problem with a report using "Sorting and Grouping". I have recently added a grouping in the reports for "Category2<>'CONTRACTS'". I have reports at the plan (overall totals), department and division levels which have sorting and grouping implemented with this new
5
7725
by: pelcovits | last post by:
How do I get Access to put a blank in a report column (but not eliminate the record completely), when the field in question is currency format, and the value is zero? My understanding is that null is not permitted as a currency value. thanks
8
13532
by: | last post by:
hi, i have a form on which a user can choose specific criteria such as dates etc, in order to filter the report that is called from the form. i do this by using the Where section of the docmd.openreport as follows DoCmd.OpenReport stDocName, acPreview, , strWhere where strWhere is a string dependant on the choices the user makes in the
2
3160
by: James | last post by:
Hi I have a bibliographic report, author, title, abstract etc which always have data, and another field, ISBN, which can be blank. How can I format my report to delete the ISBN field and label, and move the line up to a position underneath the new last field (given that the ISBN field is deleted) rgds and thanks
1
2502
by: Intrepid_Yellow | last post by:
Hi, I have the following code that runs my report generator. The user selects a table from a combo box, then whatever fields they want from a list box. (This part all works and the report runs fine). There is then a combo box they can select a field from (eg CompanyID etc) and then the list box below that contains the values (eg Microsoft, Novell etc). These are all multi-select list boxes. Now I can get the code to work if the user...
3
4700
by: metsu962 | last post by:
Okay so I've been tearing my hair out for weeks over this issue. What I have is a Crystal Report that's showing a table pulled from an Access Database. The database is a HUGE pile of junk and it has a text based Date field!! Unbelievable. This causes my Crystal Report a bunch of problems as I have to convert the date text data to date and compare it to the user inputted date to find records between the inputted dates. All would be swell if...
1
4313
by: Priyam Ganguly | last post by:
Hello everyone, I hav been facing a problem since a few days. I'm using crystal report with vb.net 2005 (.Net framework 2.0). In a report I'm retrieving the values from a database table and showing it. But the problem is that if a certain field is blank in database then it's showing a complete blank white field in the report also. This is what I don't want. For example- suppose there's a field in datbase named EntryDate which is not mandatory....
0
9706
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10580
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10323
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
7621
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5525
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5652
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4301
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3821
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2993
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.