Tips and Tricks
 Crystal Reports Forum : Crystal Reports 9 through 2020 : Tips and Tricks
Message Icon Topic: crystal report formula Post Reply Post New Topic
Author Message
subhani.029
Newbie
Newbie


Joined: 23 Sep 2014
Location: Saudi Arabia
Online Status: Offline
Posts: 4
Quote subhani.029 Replybullet Topic: crystal report formula
    Posted: 24 Sep 2014 at 8:21pm
i want to display one detail column in the report footer, for that i wrote formula which return just 'false' only... is it possible to have detail column in the report footer. I mean, i have to display set of rows in the report footer.

My formula:
stringvar text := "";
IF {Sp_Get_DailyReport;1.Job_Status} = "Workshop"
THEN text = {Sp_Get_DailyReport;1.Department_Name}

& tried this also

stringvar text := "";
IF {Sp_Get_DailyReport;1.Job_Status} = "Workshop"
THEN SELECT {Sp_Get_DailyReport;1.Department_Name}

can anyone plz help me to solve this ...


Thanks
abdul subhan
IP IP Logged
z9962
Senior Member
Senior Member
Avatar

Joined: 04 Jul 2012
Online Status: Offline
Posts: 161
Quote z9962 Replybullet Posted: 24 Sep 2014 at 10:15pm
You could use a subreport in the report footer? else
 
Formula 1 (placed in details section)
SHARED stringvar text := "";
IF {Sp_Get_DailyReport;1.Job_Status} = "Workshop"
THEN text := text & "," & {Sp_Get_DailyReport;1.Department_Name} 
 
Formula 2 in Footer
SHARED stringvar text;
IP IP Logged
lockwelle
Moderator
Moderator


Joined: 21 Dec 2007
Online Status: Offline
Posts: 4372
Quote lockwelle Replybullet Posted: 03 Oct 2014 at 5:54am
you could try inserting a cross tab into the report footer...or a subreport, otherwise the answer is no.

the report footer would only have access to the last record of the dataset of the main report.
IP IP Logged
Vimal Nair
Newbie
Newbie
Avatar

Joined: 29 Dec 2014
Location: United Arab Emirates
Online Status: Offline
Posts: 26
Quote Vimal Nair Replybullet Posted: 28 Jan 2015 at 12:07am
Try inserting a cross tab in the report footer.
Born To Live
IP IP Logged
niha
Newbie
Newbie
Avatar

Joined: 05 Jun 2015
Online Status: Offline
Posts: 28
Quote niha Replybullet Posted: 07 Jun 2015 at 11:06pm

You could use a subreport in the report footer?
IP IP Logged
Post Reply Post New Topic
Printable version Printable version

Forum Jump
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot delete your posts in this forum
You cannot edit your posts in this forum
You cannot create polls in this forum
You cannot vote in polls in this forum



This page was generated in 0.031 seconds.