https://stackoverflow.com/questions/770579/how-to-calculate-percentage-with-a-sql-statement
Select Grade, (Count(Grade)* 100 / (Select Count(*) From MyTable)) as Score
From MyTable
Group By Grade
or
as
(
select Grade, count(*)
from MyTable
group by Grade
)
select Grade...
https://www.infosol.com/crystal-reports-selecting-all-values-in-a-dynamic-prompt-list/
Answer: In order to do this, you will need to create a SQL command, that grabs all the values you want for your prompt and joins it to another query, that pulls the wildcard (*) value and the word ALL that a...
https://archive.sap.com/discussions/thread/933487
It seems that the font of the reports does not support 128 barcode so the incorrect characters appear. Take a look at this barcode128 maker for Crystal Reports, which is able to select the barcode 128 subtype automatically...
Question: How did you look for leading zero employee number?
1. I would add the following the SELECT EXPERT against the employee number
LIKE(length({employee number})[1]) "0" or " " or NULL
use to fine all employee number with "0" or " " or null
I found this reference page...
I developed a small database in MS ACCESS and create your issue, listed above.
I also created a CRYSTAL REPORT XI, In which show proper breaking for the field1(group1), field3(group2)
Database contained 3 fields
field1 field3 field2
10 5 20
10 5 20
10 6 30
20...
YES, This possible!
I would address this in the STORED PROCEDURE
1. CREATE a additional PARM to indicate how many PARMS you would LIKE to use EXAMPLE PARM1='1234' PARM2.......
2. IN THE WHERE CLAUSE
THEN BEFORE every IF statement for the PARM use the LIKE command
1ST IF: IF PARM1...
or change
3. I would ADD a FORMULA IF LENGTH(PROD.CODE) < 1 THEN "NOT ASSIGNED" to
3. I would ADD a FORMULA IF LENGTH(PROD.CODE) = NULL THEN "NOT ASSIGNED"
If this does not work download Teamview10 and install
Tell me when you will be available (I am in Arizona or mountain time) and I can...
1. I would query the data and find a true null PROD.CODE, make sure its not spaces
2. This statement Right({PRODCODE.CODE},1) would blank out PROD.CODE
3. I would ADD a FORMULA IF LENGTH(PROD.CODE) < 1 THEN "NOT ASSIGNED"
4. PLACE THIS FIELD IN THE REPORT HEADING AND MAKE IT INVISIBLE
IF THIS...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.