Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Packages and Libraries
»
LazReport
»
LazReport help
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
Forum Rules
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
[SOLVED] Lazreport. Multi...
by
Petrus Vorster
[
Today
at 09:27:32 am]
exception external SIGSEG...
by
dseligo
[
Today
at 07:57:12 am]
Single / Double / Float s...
by
Khrys
[
Today
at 07:12:43 am]
Has anyone installed TeeB...
by
egsuh
[
Today
at 06:34:29 am]
Commerce website written ...
by
Handoko
[
Today
at 05:24:32 am]
Hashing pointers by using...
by
440bx
[
Today
at 01:15:38 am]
FPC 3.2.4-rc1 available
by
dsiders
[
Today
at 12:59:46 am]
Introducing PasBuild 1.0....
by
dbannon
[December 11, 2025, 11:54:37 pm]
[SOLVED] Program compiles...
by
Schmitty2005
[December 11, 2025, 07:35:39 pm]
TIBDataSet "Closing"? on ...
by
RedOctober
[December 11, 2025, 05:00:04 pm]
So many "newbies"
by
gidesa
[December 11, 2025, 04:18:38 pm]
How can I make a safe app...
by
LeP
[December 11, 2025, 03:30:34 pm]
[SOLVED] Need help conver...
by
srvaldez
[December 11, 2025, 01:52:33 pm]
SpkToolbar custom update
by
wp
[December 11, 2025, 01:48:16 pm]
OS/2 Warp 4 problem with ...
by
Thaddy
[December 11, 2025, 01:35:10 pm]
Is FPGUI still active?
by
BSaidus
[December 11, 2025, 01:25:31 pm]
Bitmap into Paintbox
by
BubikolRamios
[December 11, 2025, 12:58:20 pm]
Notetask 1.1.0 - Free cro...
by
AlexanderT
[December 11, 2025, 12:11:14 pm]
Matching video to form
by
Pe3s
[December 11, 2025, 10:56:47 am]
Is Lazarus' Tool Palette ...
by
Ed78z
[December 11, 2025, 10:37:03 am]
[SOLVED] RXSwitch
by
Petrus Vorster
[December 11, 2025, 10:35:00 am]
fpsockets error: 10047
by
rvk
[December 11, 2025, 09:50:08 am]
Military Grade Directives
by
Thaddy
[December 11, 2025, 08:56:12 am]
Permutation of rows and c...
by
Zvoni
[December 11, 2025, 08:33:20 am]
Jacks or Better card game...
by
TBMan
[December 11, 2025, 03:12:03 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: LazReport help (Read 5918 times)
SteenJorgensen
Jr. Member
Posts: 72
LazReport help
«
on:
August 01, 2021, 11:14:38 am »
I need to be able to make a report that sums up a field (Value) based on a unique field (Name). This should be done in Scrips with an array of variables.
SQL text is simple from the application as it must be used for many other purposes "Select * from MyTable where id ="2"
Database (MyTable) values:
ID Name Value
2 Anders J 4
2 Tove H 2
2 Tove H 4
2 Anders J 8
2 Anders S 3
3 Anders S 3
4 Anders J 8
Dataset have 5 rows because of id=2 and final result should be 3 lines because the unique Name:
Anders J 12
Tove H 6
Anders S 3
I have done this before many years ago for a customer but can no longer find this nor documentation for LazReport.
Thinking I'm need to create a array of variabler of all different name and for every row sum up???
Any hint? I will by so pleased.
«
Last Edit: August 01, 2021, 11:25:40 am by SteenJorgensen
»
Logged
----------------------------------------
Lazarus version 4.0 64-bit
FPC 3.2.2
korba812
Sr. Member
Posts: 482
Re: LazReport help
«
Reply #1 on:
August 01, 2021, 12:19:18 pm »
This can be achieved in many ways. The easiest way to do this is to use "sum" and "group by" in your SQL query:
Code: SQL
[Select]
[+]
[-]
SELECT
Id
,
Name
,
SUM
(
VALUE
)
FROM
MyTable
WHERE
Id
=
"2"
GROUP
BY
Id
,
Name
«
Last Edit: August 01, 2021, 12:22:21 pm by korba812
»
Logged
SteenJorgensen
Jr. Member
Posts: 72
Re: LazReport help
«
Reply #2 on:
August 01, 2021, 02:11:24 pm »
Thanks for your answer.
But i have a const sql query named "select * from MyTable where....." So the customer can make new report in the furture without make changes in application.
So it must be programed in the script function in the report.
Logged
----------------------------------------
Lazarus version 4.0 64-bit
FPC 3.2.2
korba812
Sr. Member
Posts: 482
Re: LazReport help
«
Reply #3 on:
August 01, 2021, 04:16:38 pm »
Another way would be to use group band, but then you have to provide sorted data according to the group key.
Logged
SteenJorgensen
Jr. Member
Posts: 72
Re: LazReport help
«
Reply #4 on:
August 02, 2021, 10:23:36 am »
WOW.... Thanks, just what i need.
Now all works. I must find the documentations for LazReport, there are so many functions i dont know.
Logged
----------------------------------------
Lazarus version 4.0 64-bit
FPC 3.2.2
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
Packages and Libraries
»
LazReport
»
LazReport help
TinyPortal
© 2005-2018