Tagged Questions
The iif-function tag has no wiki summary.
14
votes
9answers
4k views
IIf() vs. If
In Visual Basic, is there a performance difference when using the IIf function instead of the If statement?
10
votes
6answers
8k views
7
votes
2answers
1k 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 ...
6
votes
1answer
1k 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 ...
2
votes
1answer
79 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 ...
2
votes
4answers
3k 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.
2
votes
2answers
1k 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 ...
1
vote
1answer
51 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
'...
...
1
vote
2answers
83 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
142 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
288 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
452 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 ...
1
vote
2answers
1k views
python: iif or (x ? a : b) [closed]
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 ...
1
vote
1answer
987 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 = ...
1
vote
3answers
911 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 ...
0
votes
2answers
35 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 ...
0
votes
1answer
143 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
200 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
240 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
64 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
1answer
474 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 ...
0
votes
4answers
8k 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 answer.
Where does Crystal Reports document that this syntax does not work?
...