473,725 Members | 2,126 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Filter report based on values of calculated value on report

296 Recognized Expert Contributor
I have a report (JobVacanciesOn ly) that has a subreport (JobVacanciesOn lySR) that are based on two separate queries.
MY - JobVacancyJobs
Expand|Select|Wrap|Line Numbers
  1. SELECT Job.Code, Job.Title, Job.Grade, Grade.Minimum, Grade.Midpoint, Grade.Maximum, Job.EEOCategoryCode, EEOCategory.Desc, Job.EEOSubCategoryCode, EEOSubCategory.Desc
  2. FROM Grade RIGHT JOIN (EEOSubCategory RIGHT JOIN (EEOCategory RIGHT JOIN Job ON EEOCategory.Code = Job.EEOCategoryCode) ON EEOSubCategory.Code = Job.EEOSubCategoryCode) ON Grade.Code = Job.Grade
  3. ORDER BY Job.Title, Job.Code;
MY - JobVacancies
Expand|Select|Wrap|Line Numbers
  1. SELECT JobVacancy.JobCode, JobVacancy.DepartmenCode, JobVacancy.DivisionCode, JobVacancy.NumberofPositions, Department.Desc, Division.Desc
  2. FROM (JobVacancy LEFT JOIN Department ON JobVacancy.DepartmenCode = Department.Code) LEFT JOIN Division ON JobVacancy.DivisionCode = Division.Code
  3. GROUP BY JobVacancy.JobCode, JobVacancy.DepartmenCode, JobVacancy.DivisionCode, JobVacancy.NumberofPositions, Department.Desc, Division.Desc
  4. ORDER BY JobVacancy.JobCode, JobVacancy.DepartmenCode, JobVacancy.DivisionCode;
There is a textbox on the main report that calculates the total number of vacancies for each job position
[code]TotalVacancies= IIf(((DSum("[NumberofPositio ns]","JobVacan cy", "[JobVacancy.JobC ode]=[code]"))-DCount("[MY - ActiveEmpJob]![ID]","MY - ActiveEmpJob"," [MY - ActiveEmpJob]![JobCode] =[code]"))<0,0,((DSum( "[NumberofPositio ns]","JobVacan cy", "[JobVacancy.JobC ode]=[code]"))-DCount("[MY - ActiveEmpJob]![ID]","MY - ActiveEmpJob"," [MY - ActiveEmpJob]![JobCode] =
Expand|Select|Wrap|Line Numbers
  1. ")))
and a textbox in the subreport that calculates the number of vacancies for that job position, in a specific department and division
[code]NumVacancies=II f([NumberofPositio ns]-(DCount(" [MY - ActiveEmpJob]![ID]","MY - ActiveEmpJob"," [MY - ActiveEmpJob]![JobCode] = Reports![JobVacanciesOnl y]![code] AND [MY - ActiveEmpJob]![DivisionCode] = [MY - JobVacancies]![DivisionCode] "))<0,0,[NumberofPositio ns]-(DCount(" [MY - ActiveEmpJob]![ID]","MY - ActiveEmpJob"," [MY - ActiveEmpJob]![JobCode] = Reports![JobVacanciesOnl y]!
Expand|Select|Wrap|Line Numbers
  1.  AND [MY - ActiveEmpJob]![DivisionCode] = [MY - JobVacancies]![DivisionCode] ")))
What I want to do now, is filter my report so that when it opens, it only shows the records that have NumVacancies or TotalVacancies with a value greater than 0 (basically I want it to only display the records where there is a job vacancy). It would seem that the easiest method would be to filter this in a query, but after over a week of trying to get a query to calculate the vacancies for me, it seems that with my dataset, it is not possible to get the desired results - hence the 2 queries above. So......is there any way to filter this based on a calculated value textbox that is on the report?? My VBA is very very limited, so please don't oversimplify if that's what I need to be using. Thanks in advance!
Jul 27 '07
94 6912
mlcampeau
296 Recognized Expert Contributor
try this. I just realized your expression can be simplified because your parameters are all string parameters.[code]
NumOccupants: DCount("[ID]","[MY - JobVacancyOccup ants]","[JobCode] = [Job]!
Expand|Select|Wrap|Line Numbers
  1. " & " And [MY - JobVacancyOccupants]![DivisionCode]=[JobVacancy]![DivisionCode]")
That simplified expression probably wouldn't give me the correct results anyway since
[code]DCount("[ID]","[MY - JobVacancyOccup ants]","[JobCode] = '" & [Job]!
Expand|Select|Wrap|Line Numbers
  1.  & "' And [MY - JobVacancyOccupants]![DivisionCode]='"&[JobVacancy]![DivisionCode]&"'") AS NumOccupants
doesn't and it's virtually the same expression. Well, as mentioned in previous posts, it gives the correct counts for most jobs, but leaves out entire records. I'm about ready to give up on this *sigh*
Aug 9 '07 #71
puppydogbuddy
1,923 Recognized Expert Top Contributor
That simplified expression probably wouldn't give me the correct results anyway since
[code]DCount("[ID]","[MY - JobVacancyOccup ants]","[JobCode] = '" & [Job]!
Expand|Select|Wrap|Line Numbers
  1.  & "' And [MY - JobVacancyOccupants]![DivisionCode]='"&[JobVacancy]![DivisionCode]&"'") AS NumOccupants
doesn't and it's virtually the same expression. Well, as mentioned in previous posts, it gives the correct counts for most jobs, but leaves out entire records. I'm about ready to give up on this *sigh*
Don't give up yet. I was experimenting and have not provided for the nulls yet. I wanted you to tell me the output from simplified expression and will work with that.
Aug 9 '07 #72
puppydogbuddy
1,923 Recognized Expert Top Contributor
MLCampeau,
See if this works for you. I took a new tack here...I decided to assign a value of "NA" (not available) for any DivisionCode in the JobVacancy table that was null or blank (""). This revised DivisionCode (DivisionCodeR) was then fed into the DCount formula and treated as a real division in the count. If you want all the Jobs in the JobsVacancy table that do not have a DivisionCode to be counted as +1 in the count, then this works. If you want some of the Jobs from the JobVacancy table with no division code to be counted and others without a division code to not be counted, then this would have to be modified. Here is the entire select statement as revised.
[code]
SELECT [MY - JobVacancyOccup ants].ID, [MY - JobVacancyOccup ants].JobCode, [MY - JobVacancyOccup ants].DeptCode, [MY - JobVacancyOccup ants].DivisionCode, JobVacancy.Divi sionCode, IIf(Nz([JobVacancy].[DivisionCode],"")="","NA" ,[JobVacancy].[DivisionCode]) AS DivisionCodeR, DCount("[ID]","[MY - JobVacancyOccup ants]","[JobCode] = '" & [Job]!
Expand|Select|Wrap|Line Numbers
  1.  & "' OR [MY - JobVacancyOccupants]![DivisionCode]='" & [DivisionCodeR] & "'") AS NumOccupants FROM [MY - JobVacancyOccupants] LEFT JOIN JobVacancy ON ([MY - JobVacancyOccupants].DivisionCode = JobVacancy.DivisionCode) AND ([MY - JobVacancyOccupants].DeptCode = JobVacancy.DeptCode) AND ([MY - JobVacancyOccupants].JobCode = JobVacancy.JobCode);
  2.  
Aug 11 '07 #73
mlcampeau
296 Recognized Expert Contributor
MLCampeau,
See if this works for you. I took a new tack here...I decided to assign a value of "NA" (not available) for any DivisionCode in the JobVacancy table that was null or blank (""). This revised DivisionCode (DivisionCodeR) was then fed into the DCount formula and treated as a real division in the count. If you want all the Jobs in the JobsVacancy table that do not have a DivisionCode to be counted as +1 in the count, then this works. If you want some of the Jobs from the JobVacancy table with no division code to be counted and others without a division code to not be counted, then this would have to be modified. Here is the entire select statement as revised.
[code]
SELECT [MY - JobVacancyOccup ants].ID, [MY - JobVacancyOccup ants].JobCode, [MY - JobVacancyOccup ants].DeptCode, [MY - JobVacancyOccup ants].DivisionCode, JobVacancy.Divi sionCode, IIf(Nz([JobVacancy].[DivisionCode],"")="","NA" ,[JobVacancy].[DivisionCode]) AS DivisionCodeR, DCount("[ID]","[MY - JobVacancyOccup ants]","[JobCode] = '" & [Job]!
Expand|Select|Wrap|Line Numbers
  1.  & "' OR [MY - JobVacancyOccupants]![DivisionCode]='" & [DivisionCodeR] & "'") AS NumOccupants FROM [MY - JobVacancyOccupants] LEFT JOIN JobVacancy ON ([MY - JobVacancyOccupants].DivisionCode = JobVacancy.DivisionCode) AND ([MY - JobVacancyOccupants].DeptCode = JobVacancy.DeptCode) AND ([MY - JobVacancyOccupants].JobCode = JobVacancy.JobCode);
  2.  
Thanks for sticking with me on this. I tried the code you suggested but for some reason it's not liking the '"& [Job]![code] &"' because it asks for the parameter value. If I just press enter without inputting a value, it does the count, but it's not correct because it's not counting where the job codes match. I don't understand why it doesn't like that because that syntax was working in previous attempts....I also tried [Job].[code] and [Job]![code] without thhe '"& &"' and it gave #Error. ?????
Aug 13 '07 #74
puppydogbuddy
1,923 Recognized Expert Top Contributor
Thanks for sticking with me on this. I tried the code you suggested but for some reason it's not liking the '"& [Job]![code] &"' because it asks for the parameter value. If I just press enter without inputting a value, it does the count, but it's not correct because it's not counting where the job codes match. I don't understand why it doesn't like that because that syntax was working in previous attempts....I also tried [Job].[code] and [Job]![code] without thhe '"& &"' and it gave #Error. ?????
I know it works because I created a mimic on my end using the sample data you provided.

The problem on your end is probably the order that JobVacancy.Divi sionCodeR got placed in the query by MS Access. Access probably placed it in the next vacant column, and I physically placed it right after JobVacancy.Divi sionCode and right before NumOccupants. Also, make sure your query table grid shows the 3 left joins.
Aug 13 '07 #75
mlcampeau
296 Recognized Expert Contributor
I know it works because I created a mimic on my end using the sample data you provided.

The problem on your end is probably the order that JobVacancy.Divi sionCodeR got placed in the query by MS Access. Access probably placed it in the next vacant column, and I physically placed it right after JobVacancy.Divi sionCode and right before NumOccupants. Also, make sure your query table grid shows the 3 left joins.
Hmm...I tried [code=sql]SELECT [MY - JobVacancyOccup ants].ID, [MY - JobVacancyOccup ants].JobCode, [MY - JobVacancyOccup ants].DepartmentCode , [MY - JobVacancyOccup ants].DivisionCode, JobVacancy.Divi sionCode, IIf(Nz([JobVacancy].[DivisionCode],"")="","NA" ,[JobVacancy].[DivisionCode]) AS DivisionCodeR, DCount("[ID]","[MY - JobVacancyOccup ants]","[JobCode] = '" & [Job]!
Expand|Select|Wrap|Line Numbers
  1.  & "' OR [MY - JobVacancyOccupants]![DivisionCode]='" & [DivisionCodeR] & "'") AS NumOccupants
  2. FROM [MY - JobVacancyOccupants] LEFT JOIN JobVacancy ON ([MY - JobVacancyOccupants].DivisionCode = JobVacancy.DivisionCode) AND ([MY - JobVacancyOccupants].DepartmentCode = JobVacancy.DepartmenCode) AND ([MY - JobVacancyOccupants].JobCode = JobVacancy.JobCode);
and the order of my columns are: Empl ID; Job Code; Department Code; Division Code; JobVacancy.Divi sionCode; DivisionCodeR; NumOccupants. It's asking twice for the value of [Job]![code]. And yes, there are three left joins in the query table grid. The other thing, I don't think it should be "[JobCode] = '" & [Job]![code] & "' OR [MY - JobVacancyOccup ants]![DivisionCode]='" & [DivisionCodeR] & "'"), it should be AND, because I need the job codes to match, as well as the division code. Naturally, since my query isn't recognizing [Job]![code], if I change it to AND I just get 0's.
Aug 13 '07 #76
mlcampeau
296 Recognized Expert Contributor
I changed [Job]![code] to [JobVacancy]![JobCode] to see what happens, and that works. It seems that the DCount isn't wanting to reference a table/field that isn't in the query table grid. I really want [Job]![code] to be used though, because not all job codes are in the job vacancy table.
As predicted in my previous post, AND would be correct, otherwise it is counting all employees whose division matches the JobVacancy.Divi sionCode no mattter what their job code is. An example of what is showing up:
Emp ID; Job Code; Department Code; Division Code; JobVacancy.Divi sionCode; DivisionCodeR; NumOccupants
1234; 30801A; OP; ; ; NA; 0
5678; 30801A; ES; HR; HR; HR; 1
It should be showing 1 as the NumOccupants for employee 1234.
Aug 13 '07 #77
puppydogbuddy
1,923 Recognized Expert Top Contributor
I changed [Job]![code] to [JobVacancy]![JobCode] to see what happens, and that works. It seems that the DCount isn't wanting to reference a table/field that isn't in the query table grid. I really want [Job]![code] to be used though, because not all job codes are in the job vacancy table.
As predicted in my previous post, AND would be correct, otherwise it is counting all employees whose division matches the JobVacancy.Divi sionCode no mattter what their job code is. An example of what is showing up:
Emp ID; Job Code; Department Code; Division Code; JobVacancy.Divi sionCode; DivisionCodeR; NumOccupants
1234; 30801A; OP; ; ; NA; 0
5678; 30801A; ES; HR; HR; HR; 1
It should be showing 1 as the NumOccupants for employee 1234.

One change I think you need to make is to uncheck EmpID as an selection item (uncheck the show box). The reason is that your query is about positions (filled or vacant), not about employees ...in fact if you try to join empID with vacancy table, it would not make sense.
.
Modifying my version of your query which I posted in post#73 to unshow the empID works on my end and correctly shows 2 NumOccupants for 30801A>>>>1 for Dept ES;Div HR + 1 for Dept OP;Div NA.

You need to understand what I did, and understand why, in my version "Or" is correct as opposed to "And".. Logically, your objective for this query is to account for filled positions + vacant positions to give you the total positions. Given that you need to join the Vacant positions and filled positions so that they equal the Total NumOccupants by JobCode and Department; given that some or all of the division codes are not shown (blank) on the JobVacancy table, I assigned a Division Code of "NA" meaning Not Available. Alternatively, you can think of the "Or" as a "+" if you want and revise your query as:follows in pseudo code. DCount of filled postions from [My -JobVacancyOccup ants] plus DCount of vacant positions from [JobVacancy] results in total NumOccupants... ..which, by the way, would be clearer if you called it NumPositions.
Aug 13 '07 #78
mlcampeau
296 Recognized Expert Contributor
One change I think you need to make is to uncheck EmpID as an selection item (uncheck the show box). The reason is that your query is about positions (filled or vacant), not about employees ...in fact if you try to join empID with vacancy table, it would not make sense.
.
Modifying my version of your query which I posted in post#73 to unshow the empID works on my end and correctly shows 2 NumOccupants for 30801A>>>>1 for Dept ES;Div HR + 1 for Dept OP;Div NA.

You need to understand what I did, and understand why, in my version "Or" is correct as opposed to "And".. Logically, your objective for this query is to account for filled positions + vacant positions to give you the total positions. Given that you need to join the Vacant positions and filled positions so that they equal the Total NumOccupants by JobCode and Department; given that some or all of the division codes are not shown (blank) on the JobVacancy table, I assigned a Division Code of "NA" meaning Not Available. Alternatively, you can think of the "Or" as a "+" if you want and revise your query as:follows in pseudo code. DCount of filled postions from [My -JobVacancyOccup ants] plus DCount of vacant positions from [JobVacancy] results in total NumOccupants... ..which, by the way, would be clearer if you called it NumPositions.
I agree about unchecking the EmpID show box. I have done that. I'm still having problems with the DCount referencing [Job]![code].
Looking at your pseudo code it makes me wonder if I have been super clear on what I am after. Here is your pseudo code:
DCount of vacant positions from [JobVacancy] results in total NumOccupants... ..which, by the way, would be clearer if you called it NumPositions.
I am not actually looking for the number of positions. I have that number in the job vacancy table.
Job Vacancy
JobCode
Departmen
Division
NumberofPositio ns

I'm looking for a count of all employees associated with a job code in a particular department or division (NumOccupants). Essentially, I would like my query result to show every job title in the Job Table, and how many employees have that job in a particular department and division. So the layout would be like this:
Job Code; Department; Division; NumberofPositio ns; Number of Occupants;Numbe rofVacancies
I will then take JobVacancy.Numb erofPositions - NumOccupants to calculate the NumberofVacanci es.
There are no cases where a JobVacancy table record will be incomplete (i.e. - a blank Department or Division). There are cases, however, in the EmplOrganizatio n table (which is one of the tables in the MY - JobVacancyOccup ants query) where the department and/or division is not filled in for a particular employee, but their job code is. (I'm in the process of trying to fill in those gaps, but it's a complicated situation). So where my problem then comes in is that not every job code is entered in the job vacancy table, mainly because I don't know how many positions there are for every position, and which department and division the positions are in. An example is JobCode 30111A, Department BS, Division CORP. I have one occupant with this criteria, but this position is not listed in the job vacancy table. When I try your query:
[code=sql]SELECT [MY - JobVacancyOccup ants].JobCode, [MY - JobVacancyOccup ants].DepartmentCode , [MY - JobVacancyOccup ants].DivisionCode, JobVacancy.Divi sionCode, IIf(Nz([JobVacancy].[DivisionCode],"")="","NA" ,[JobVacancy].[DivisionCode]) AS DivisionCodeR, DCount("[ID]","[MY - JobVacancyOccup ants]","[JobCode] = '" & [Job]!
Expand|Select|Wrap|Line Numbers
  1.  & "' OR [MY - JobVacancyOccupants]![DivisionCode]='" & [DivisionCodeR] & "'") AS NumOccupants
  2. FROM [MY - JobVacancyOccupants] LEFT JOIN JobVacancy ON ([MY - JobVacancyOccupants].JobCode = JobVacancy.JobCode) AND ([MY - JobVacancyOccupants].DepartmentCode = JobVacancy.DepartmenCode) AND ([MY - JobVacancyOccupants].DivisionCode = JobVacancy.DivisionCode);
as I said before, I get prompted for the [Job]![code] value twice. It then displays the query and gives me results like this:
30111A; BS; CORP; ; NA; 0
30800A; ES; HR; HR; HR; 7
30801A; OP; ; ; NA; 0
30801A; ES; HR; HR; HR; 7
31200A; MAN; DPS; DPS; DPS; 14
31200A; MAN; VAD; VAD; VAD; 9
31200A; MAN; SOM; SOM; SOM; 15

those results should actually look like this:
30111A; BS; CORP; ; NA; 1
30800A; ES; HR; HR; HR; 1
30801A; OP; ; ; NA; 1
30801A; ES; HR; HR; HR; 1
31200A; MAN; DPS; DPS; DPS; 1
31200A; MAN; VAD; VAD; VAD; 1
31200A; MAN; SOM; SOM; SOM; 1

So, as I mentioned before, it seems to be counting all employees that have the same division as the JobVacancy.Divi sionCode, obviously because it's not registering what [Job]![code] is. I don't understand why it doesn't like that reference since it's worked in the past.
Aug 13 '07 #79
mlcampeau
296 Recognized Expert Contributor
I tried adding the Job table to the query grid, so it's no longer asking me for the parameter value of [Job]![code]:
[code=sql]SELECT [MY - JobVacancyOccup ants].JobCode, [MY - JobVacancyOccup ants].DepartmentCode , [MY - JobVacancyOccup ants].DivisionCode, JobVacancy.Divi sionCode, IIf(Nz([JobVacancy].[DivisionCode],"")="","NA" ,[JobVacancy].[DivisionCode]) AS DivisionCodeR, DCount("[ID]","[MY - JobVacancyOccup ants]","[JobCode] ='"&[Job]!
Expand|Select|Wrap|Line Numbers
  1. &"' OR [MY - JobVacancyOccupants]![DivisionCode]='" & [DivisionCodeR] & "'") AS NumOccupants
  2. FROM Job LEFT JOIN ([MY - JobVacancyOccupants] LEFT JOIN JobVacancy ON ([MY - JobVacancyOccupants].JobCode = JobVacancy.JobCode) AND ([MY - JobVacancyOccupants].DepartmentCode = JobVacancy.DepartmenCode) AND ([MY - JobVacancyOccupants].DivisionCode = JobVacancy.DivisionCode)) ON Job.Code = [MY - JobVacancyOccupants].JobCode;
With the OR in the DCount, I get results like this:
30111A; BS; CORP; ; NA; 1
30800A; ES; HR; HR; HR; 7
30801A; OP; ; ; NA; 2
30801A; ES; HR; HR; HR; 8
31200A; MAN; DPS; DPS; DPS; 25
31200A; MAN; VAD; VAD; VAD; 21
31200A; MAN; SOM; SOM; SOM; 27

but the results should be:
30111A; BS; CORP; ; NA; 1
30800A; ES; HR; HR; HR; 1
30801A; OP; ; ; NA; 1
30801A; ES; HR; HR; HR; 1
31200A; MAN; DPS; DPS; DPS; 2 (I made an error on an above post and said it should be 1, but it really should be 2)
31200A; MAN; VAD; VAD; VAD; 1
31200A; MAN; SOM; SOM; SOM; 1

When I change it to AND I get this:
30111A; BS; CORP; ; NA; 0
30800A; ES; HR; HR; HR; 1
30801A; OP; ; ; NA; 0
30801A; ES; HR; HR; HR; 1
31200A; MAN; DPS; DPS; DPS; 2
31200A; MAN; VAD; VAD; VAD; 1
31200A; MAN; SOM; SOM; SOM; 1
Aug 13 '07 #80

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

Similar topics

0
6474
by: CSDunn | last post by:
Hello, I have a problem with field filtering between an Access 2000 Project form (the application is called CELDT), and the report that shows the results of the filter. Both the form and the report are based on the same View addressed in the Record Source of both as 'dbo.CLMain_vw'. The View resides in a SQL Server 2000 database. There are two different problems I am having with filtering: The first involves filtering in the form by date...
3
6614
by: Richard | last post by:
Hi, I have a form based on a table. When I filter the form I want to run a report based on the same table with the same filter as the form. No problem until I want to filter a combo box where the text value is on a different table. The me.filter is then a text instead of the id-number from the lookup table. This causes the report to prompt for the parameter. How do I get by this problem? Do I need to create a temporary table? I rather...
7
6285
by: damjanu | last post by:
Hi All; I need little help. I have a datasheet form. I allow user to do 'filter by selection'. My form contains a column with values. As user changes selections, I want to calculate totals. I can do this the first time the form loads.
1
17668
by: Nathan Bloomfield | last post by:
Does anyone know if there is any documentation which relates to Access2k + ? or can anyone help adjust the code? I am having trouble converting the DAO references. TITLE :INF: How to Create a Dynamic Crosstab Report PRODUCT :Microsoft Access PROD/VER:1.00 1.10 OPER/SYS:WINDOWS
3
2739
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
2
4402
by: Seth Delaney | last post by:
I have a form with multiple unbound text boxes which serves as a "search form". I can enter my search parameters in the various boxes as needed and click okay. My records are then filtered to produce the results I want in a separate form (filter by form). No problem, except I want to save the sql to a query, not a form. When I debug.print the various sql, I get something like this example: (( LIKE "cam*")) which obviously is not enough...
1
2488
by: shobhit_shanker | last post by:
Here are the relevant "givens" to my problem... Form: frmLaunchRpt - Text Box: txtAsOfDate - Check Box: chkLogEval - Command Button: cmdLaunchRpt Report: rptEvaluation - Text Box: txtGreen (Percent of items on schedule) - Text Box: txtYellow (Percent of items slightly off schedule)
3
4741
by: kelley.l.turner | last post by:
Hi all, I am very new to MS Access so please bear with me! I have created a simple calculated field in my data entry form, yet when I view my data table or try to generate a report based on this calculated field, no value is posted. How/where do I get my calculated values to also show up in the tables and reports? Thanks, Kelley
2
5544
by: jcf378 | last post by:
hi all. I have a form which contains a calculated control ("days") that outputs the # of days between two dates (DateDiff command between the fields and ). However, when I click "Filter by Form" in order to search for records based on this form, I would like to be able to enter a value in this "days" control so that I can filter records on the form based on this calculated interval (i.e., i want to search for records specifically where...
0
8752
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9401
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...
0
9257
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9176
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,...
0
8097
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6702
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
6011
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
2
2635
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2157
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.