|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Thursday, February 21, 2013 9:49 AM
Points: 16,
Visits: 112
|
|
I want to add this expression in SSRS 2008R2 For Column Heading
If {Reportname.value} = 'ABC' And {Reportname.value} = 'S' Then 'Amount1' Else If {Reportname.value} = 'BAC' Then 'Amount2' ELSE If {Reportname.value} <> 'ABC' AND {Reportname.value} <> 'BAC' Then 'amount3' Else 'amount3'
i have added like this
=Switch(Fields!Field.Value = "ABC" And Fields!Field.Value = "S" , "Amount1", Fields!Field.Value = "BAC" , "Amount2", Fields!Field.Value <> "ABC" AND Fields!Field.Value <> "BAC", "Amount3","amount3") But error is comming for column heading #error please help to adds this for column heading
|
|
|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: Today @ 2:26 AM
Points: 1,289,
Visits: 3,859
|
|
skgudi2009 (2/10/2013) I want to add this expression in SSRS 2008R2 For Column Heading
If {Reportname.value} = 'ABC' And {Reportname.value} = 'S' Then 'Amount1' Else If {Reportname.value} = 'BAC' Then 'Amount2' ELSE If {Reportname.value} <> 'ABC' AND {Reportname.value} <> 'BAC' Then 'amount3' Else 'amount3'
i have added like this
=Switch(Fields!Field.Value = "ABC" And Fields!Field.Value = "S" , "Amount1", Fields!Field.Value = "BAC" , "Amount2", Fields!Field.Value <> "ABC" AND Fields!Field.Value <> "BAC", "Amount3","amount3") But error is comming for column heading #error please help to adds this for column heading
Well, your Pseudo code doesn't make any logical sense, so why don't you try explaining what you want in natural language?
If {Reportname.value} = 'ABC' And {Reportname.value} = 'S' Then
Reportname.value cannot equal both ABC and S , can it?
MM
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Thursday, February 21, 2013 9:49 AM
Points: 16,
Visits: 112
|
|
Actually i want like this
If {Reportname.CategoryCode} = 'DEPOSIT' And {reportname.WithdrawalType} = 'S' Then 'Deposit Amount' Else If {BReportname.CategoryCode} = 'LOAN' Then 'Loan Amount' ELSE If {Reportname.CategoryCode} <> 'LOAN' AND {Reportname.CategoryCode} <> 'DEPOSIT' Then 'Closing Balance' Else 'Closing Balance'
Categorycode and withdrawaltype are fieldnames which is in my table categorycodes are (LOANS,DEPOSIT,SHARES,SUSPENCE) Withdrawaltype are (Multiple (M),Single(S) "Deposit Amount" "Loan Amount" "Closing Balance" are Column Headings which i want so i added like this
=Switch(Fields!CategoryCode.Value = "DEPOSIT" And Fields!WithdrawalType.Value = "S" , "Deposit Amount", Fields!CategoryCode.Value = "LOAN" , "Loan Amount", Fields!CategoryCode.Value <> "LOAN" AND Fields!CategoryCode.Value <> "DEP", "Closing Balance","Closing Balance")
|
|
|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: Today @ 2:26 AM
Points: 1,289,
Visits: 3,859
|
|
Is this a matrix report? what groups do you have for rows and columns?
MM
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Thursday, February 21, 2013 9:49 AM
Points: 16,
Visits: 112
|
|
| It is a Tabular Report No groups for Rows and columns for this Report just i want to display the column heading with that expression instead of typing Depositamount/Loanamount/closingbalance In crystal Report it is working fine with if and else condition
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Yesterday @ 12:18 AM
Points: 16,
Visits: 59
|
|
Try this (from http://blog.hoegaerden.be/2009/09/14/adding-an-else-to-your-switch/):
=Switch( Fields!CategoryCode.Value = "DEPOSIT" And Fields!WithdrawalType.Value = "S" , "Deposit Amount", Fields!CategoryCode.Value = "LOAN", "Loan Amount", Fields!CategoryCode.Value <> "LOAN" AND Fields!CategoryCode.Value <> "DEP", "Closing Balance", True, "Closing Balance" )
Your third expression (Fields!CategoryCode.Value <> "LOAN" AND Fields!CategoryCode.Value <> "DEP") seems to be superfluous because the same thing is returned by the "else" expression. The statement can be rewritten to:
=Switch( Fields!CategoryCode.Value = "DEPOSIT" And Fields!WithdrawalType.Value = "S" , "Deposit Amount", Fields!CategoryCode.Value = "LOAN", "Loan Amount", True, "Closing Balance" )
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Thursday, February 21, 2013 9:49 AM
Points: 16,
Visits: 112
|
|
| Thank u very much it is working
|
|
|
|