The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
38 views

change image in report builder using iif function

I'm working with sql server report builder and I'm trying to change the value of an image according to a chosen date from a parameter. I've selected external as source and in the expression window I ...
0
votes
1answer
103 views

syntax error SQL Access Nested IIF ISNULL statements

I'm getting a syntax error, I've changed it multiple times, re-typed it and tried to draw a map even. Now after my head is about to expload, out of desperation I'm turning to someone who has an eye ...
0
votes
1answer
241 views

IIF Statement LogiXML

I am having problems trying to do the following. I am trying to incorporate an iif statement inside a caption. This is the current line that is evaluated on the label: =round(@ ...
2
votes
3answers
2k views

SSRS - nested IIF in the expression

=iif((Fields!Company_OEM.Value = "Channel") AND (Parameters!paramCompanyOEM.Count < 2), "None", iif(Not(Fields!Company_OEM="Channel"), Count(Fields!TS_ISSUEID.Value), "None")) Error shows and ...
1
vote
1answer
2k views

“Conversion from type 'DBNull' to type 'Boolean' is not valid”, after checking that it's not DBNull

In my ASP.Net Web-Application, I'm getting this error: Conversion from type 'DBNull' to type 'Boolean' is not valid. From this function: Namespace atc Public Class Nil '... ...
0
votes
3answers
2k views

SSRS Formula or expression to change NaN to 0

I am using the following expression to work out a percentage: =Fields!Days.Value/Sum(Fields!Days.Value, "Date_month_name") Days.Value is showing as 0 however in a few of my results instead of ...
2
votes
1answer
277 views

Autofill parts description via parts number text box

Sorry i don't have any code written because i have never written vba in access before. what i need to do is have a combobox autofill on my form to save a bit of time i have a database that has all our ...
1
vote
2answers
483 views

Access IIF Query

I need my Final Decision field to be the result of the IIF statement. But I keep getting syntax errors. SELECT x.AR_ID, Final Decision: IIf([x].[R_DECISION] Is Not Null, ...
1
vote
1answer
293 views

IIf Function Based on User Defined Parameters

I'm trying to develop a query based on parameters entered into a form. I want to make sure that the query will still work even if the user chooses not to enter parameters (ex. start and end date) or ...
1
vote
3answers
630 views

vb.net: how is iif giving a null reference exception?

Been looking at a lot of post/articles about using Iif(). All of this started when I tried to use IIf() like a conditional operator much in the likes of C/C#/C++ etc. What I tried to do exactly was ...
1
vote
1answer
2k views

Can i execute query in iif function

I want to know can i run a query in iif function used in ms access database. My case Select field1,(iif(3<4,'Select * from tbl1','select * from tbl2')) from tblmain I am facing syntax error ...
4
votes
4answers
12k views

Java Equivalent to iif function

the question is simple, there is a functional equivalent of the famous iif in java? For example: IIf (vData = "S", True, False) Thanks in advance.
0
votes
1answer
287 views

checking whether field in table has space or comma - MS-Access

I have table called FinalForgotten which only contains one field called aname. The field could either look like Smith John or Smith,John. So both last and first name are in same field and delimited by ...
0
votes
2answers
432 views

IIf function inside Access query

I have a query and I would like to use an IIf function as part of the criteria. Here is the full SQL: SELECT Hits.HitID, Hits.ListingID, Hits.HitCount, Hits.HitDate, Hits.HitTypeID, Hits.IsDeleted ...
0
votes
4answers
661 views

Why won't this work as an IIF function, but will as an IF Statement?

The following works: If 1=1 rdoYes.checked = True Else rdoNo.checked = True End If However, the following doesn't work: IIF(1=1, rdoYes.checked = True, rdoNo.checked = True) Why is this? ...
0
votes
3answers
85 views

Multiple Havings not working

I have a database with the following schema: ID PositionId LeagueId 1 4 5 3 4 5 3 8 5 4 1 6 I have this sql query in ...
0
votes
2answers
943 views

SSRS 2008: iif IsNan statement Error wrong number of arguments

when I run the SSRS report with the following expression below, I get an error that says: wrong number of arguments. I get this error at the ).IsNaN, part of my statement. I don't see what i'm ...
2
votes
2answers
4k views

python: iif or (x ? a : b) [duplicate]

Possible Duplicate: Python Ternary Operator If Python would support the (x ? a : b) syntax from C/C++, I would write: print paid ? ("paid: " + str(paid) + " €") : "not paid" I really ...
2
votes
2answers
3k views

Problem evaluating NULL in an IIF statement (Access)

Item in the recordset rstImportData("Flat Size") is = Null With that, given the following statement: IIF(IsNull(rstImportData("Flat Size")), Null, cstr(rstImportData("Flat Size"))) Result: Throws ...
2
votes
1answer
3k views

Conditional Action in SSRS

I want my textbox to have an action ONLY if the condition is true, otherwise no action. This is what I have as my current action expression for going to another report: =IIf(Fields!MyTextbox.Value = ...
11
votes
2answers
2k views

Does the iif function compute both paths in SSRS or is it short-circuited?

I am trying to evaluate a Price per Kilo ($/Kg) based on sales of a product. This works fine if the product was acutally sold during the period specified. However if the product is not sold the Kg ...
1
vote
3answers
2k views

Report Server - unable to display correct input parameter via Iif() or Switch()

I have a nullable boolean input parameter with the following expression in my textbox: =iif(Parameters!Sorted.Value="","All",iif(Parameters!Sorted.Value="True","Sorted","Unsorted")) and I am trying ...
19
votes
6answers
31k views

iif equivalent in c#

What's the iif equivalent in c#? Or similar short circuit?
2
votes
4answers
14k views

Crystal Reports formula: IsNull + Iif

There are hints of the answer to this question here and there on this site, but I'm asking a slightly different question. Where does Crystal Reports document that this syntax does not work? ...
8
votes
1answer
2k views

If, IIf() and If()

I recently asked a question about IIf vs. If and found out that there is another function in VB called If which basically does the same thing as IIf but is a short-circuit. Does this If function ...
28
votes
8answers
11k views

IIf() vs. If

In Visual Basic, is there a performance difference when using the IIf function instead of the If statement?