Conditional has various meanings for various languages and probably should be avoided as a tag.
1
vote
1answer
8 views
Conditionally selecting a field or static string in MySQL
I have two tables items and sale_invoice_items , items has a flag indicating if the item expires, and sale_invoice_items has the expiry date.
now when doing SELECT to return an invoice I'm doing:
...
-1
votes
1answer
7 views
Conditional Excel Lookup
I have week days in Column A and values in Column B
I want to look up the column B values that correspond to all the "Thursdays" in Column A and return the lowest of those values.
My apologies if this ...
0
votes
1answer
42 views
Checking if words match with or without spaces
I have a code, I'll just give a small example below. Though what it does is gets the users name, then checks for other context. Then I check them versus eachother, and my entire script works besides ...
0
votes
0answers
34 views
R merge() follow up conditional replacement of non-unique entries
I would greatly appreciate a solution to defined problem below; I think it's a very difficult one.
I join 2 data.frames t1 and t2 using merge(). In the resulting data.frame, which I named "testing", ...
0
votes
2answers
19 views
Checking if variables are defined in a makefile
I have a GNU Makefile (version 3.81) that looks like the following:
.PHONY: SPOneDot
SPOneDot:
ifndef X
X=0.05
$$(info X undefined, changed to $X)
endif
ifndef Y
Y=0.05
...
1
vote
1answer
55 views
SSIS condtional split to skip rows in a datetime column which has numbers
I have a flat file source which is reading a .csv file. This file has a datetime column in which some rows have numbers. I want use a conditional split component to skip the rows which are having ...
0
votes
0answers
18 views
Is it possible to use an if statement in a factory (FactoryGirl)?
I've got two traints in my factory, and I want one of them to be included when I create the object, without it defaulting to one (so randomly pick the trait). Here's what I'm doing:
...
0
votes
1answer
30 views
Deleting row in R based on meeting conditions
I am reading in a very large dataset using read.table. Once I've read the data in, I want to keep only those records that fall in a certain lat/lon region. So basically I want to define upper and ...
1
vote
5answers
51 views
C++ Multiple statements for conditional operator
I'm trying to use a conditional statement that does one thing in one condition but does two things if the other condition applies.
Consider the following:
( h >= 0 && h < 24 ? hour = ...
0
votes
0answers
21 views
Image width inline IE conditional comments
I would like to use a different image inline width property when a HTML page is viewed in Outlook.
I believe the only way around this would be by using IE conditional comments, something like this:
...
0
votes
0answers
27 views
Wordpress custom conditional is_event()
I am trying to use the widget_logic plugin with a set of custom conditionals to help link the post types with specific widgets. Here we go
function is_event() {
if ( is_post_type_hierarchical( ...
0
votes
0answers
19 views
Kendo Grid - How to conditionally apply a min value to a field?
In my editable grid I have a fields, one of which I want to have a minimum value of 0 or 1 depending on which row it is. For instance:
ID: {editable: false},
NameField: { editable: false },
Count: { ...
-1
votes
3answers
52 views
Why is this failing to compile?
I have an requirement to execute an expression which contains math and conditional statements and a switch statement. What I've tried is this:
20 + 10 + (if (20 > 10){ return 0.2; } else { return ...
0
votes
0answers
64 views
Conditional include a file in C
I have a question. Supose that 2 teams makes modification on a source file that include a header "test.c" But one had that file called "test.C" and the another one had it called "test.c"
Is there a ...
1
vote
2answers
48 views
Difference between && and -a in BASH
From what I know, && and -a both provide the conditional AND function in an expression for a BASH shell. Is there any difference between the 2 of them?
-1
votes
1answer
42 views
How do I use conditional formatting in Excel 2010 to highlight a cell newer / older than an arbitrary date? [closed]
This is such a simple stupid question it SHOULD be really easy. Sadly, Excel is not cooperating!
I'm using Excel 2010, I have a column of dates (Criminal History Check most recent approval dates). I ...
0
votes
2answers
20 views
Was the python script launched by mpirun or mpiexec?
I've coded a python script that can be either launched in stand alone way or with mpi support.
python myscript.py
vs
mpirun -np 2 python myscript.py
How can I know inside the script in which way ...
0
votes
1answer
24 views
Wordpress conditional post layout
I need to display multiple styles of posts; News1 and News2. The problem i am having is that i need to display each post in a different style. IE for posts that are in News1 they need to have date ...
0
votes
0answers
15 views
css only conditional form works in firefox, but not chrome. Can you look over this codepen?
I was trying to be clever with this conditional hiding and showing of a text-field based on its adjacent radio being selected.
It works in firefox just fine, but not chrome. Can someone confirm that ...
3
votes
1answer
20 views
file overwritten in spite of conditional
I have some files, some are populated. Try to put a single zero in each file that is not populated, using a list of the file names, and testing each file for content:
for n in list_of_files:
nam ...
2
votes
4answers
59 views
Conditional operator behaviour
Can anybody explain the logic behind the output of below code?
if(true||false&&false){
System.out.println("right to left ");
}
if (false && true||true){
...
0
votes
2answers
40 views
Rails: Conditional Validation & Views
What I'm thinking right now is...
I have a library full of books (entries). Each book has many checkouts (embedded document).
What I think I want to do is, upon checkout, make a new "checkout" as an ...
0
votes
4answers
37 views
Is different html page content to different browsers possible?
I have a fullscreen/background slideshow that my client loves that just utterly fails in Internet Explorer 8 and below. I think trying to fix that is way beyond my capabilities right now so I would ...
0
votes
1answer
28 views
MySQL SubQuery Conditional
I am trying to build a rather complex view in MySQL and want to do a conditional, but it sems always to fail.
My view (simplified) is
Select entry AS Entry, ,(select count(`poitems`.`entry`) AS ...
0
votes
1answer
71 views
Excel: if duplicate cell value found in another column then highlight green
Can someone help me, I'm not sure what formula to use.
I have highlighted the cell in the picture to show an example of what I mean.
What I want to do is highlight the cell in column A where the ...
0
votes
1answer
33 views
javascript - can't compare var of type int in conditional statements
I declare global var in script sitting in the head:
var numMonsters;
then i have somebody setup div with form that call js function also located in the head and there i assigning this var:
...
0
votes
3answers
92 views
Trouble with using a simple boolean [closed]
Sorry if this is a stupid question, but Im completely new to this and just trying my hand.
My code is stuck....after this point, the program ends, no matter whether a 1 or 2 is selected. I know its ...
0
votes
1answer
37 views
VB.NET - Grouping statements on one line
I want to put several statements on one line, including conditional statements that need to be grouped together.
I can do this:
x += 20 : y += 10 : If x > 400 Then x = 0
I want to have more than ...
0
votes
1answer
19 views
Output for sample code for an upcoming exam concerning pthread
pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
int token = 2;
int value = 3;
void * red ( void *arg ) {
int myid = * ((int *) arg);
...
0
votes
1answer
26 views
Conditional statements in HTML to rule out non-mobile devices
well i've made a responsive website which handles well in mobile devices. Now there are some Phonenumbers on the website which my cliënt would like to be clickable on any Phone so the visitor can call ...
0
votes
1answer
17 views
gmake ifeq comparison does not give desired result
I have a somewhat complex makefile that I want to change and I don't know much about make.
BUILD_TYPE = SERVER
BAS_CSRC = a.c \
b.c \
c.c
What I want to do is conditionally ...
0
votes
1answer
62 views
Do typecasts use conditionals internally? (C#, C/C++)
This question is most specific to C#, but it would be interesting to know about C/C++, too. Java has to use conditionals, I guess, given its dynamic typecasting / lack of compile-time generics.
...
1
vote
1answer
52 views
Why don't the following Ruby methods work? I've written a couple of methods that are supposed to give the sum of an entered array
This is what's up:
It seem I've got a syntax problem. Both of the following methods, which are similar to one another, load to irb fine. When I go to use them, though, they produce errors. Since I'm ...
0
votes
2answers
57 views
YUI datatable conditional dropdown editor
I'm currently editing an application which uses YUI 2.5. I haven't used it before and could use some help.
I want to be able to add a dropdown editor for a particular column's rows using datatable, ...
0
votes
3answers
38 views
MySQL - SELECT something IF (something is true)
I've got a database with 3 columns, "ID", "username", "password". I'm pretty new on SQL (still learning :P ), and well, I'm not able to get my idea working. This is for an Android app. I've made an ...
0
votes
1answer
54 views
sql server procedure to update table on conditions
I am trying to write a stored procedure that will run every day and check invoices for past due or not. I want to pull all invoices from table that are not paid then I want to go through them and ...
0
votes
1answer
21 views
Conditional options for Rails methods?
I want to add a class to a form_for method, but how would I do that?
<% if @plan.price == 0 %>
<%= form_for @account, :html => { :class => 'new_account' } do |f| %>
<% else ...
0
votes
1answer
16 views
dynamically create 2 conditional variable for pthreads
Pthreads related question.
Say i want to dynamically create 2 conditional variable.
Will this do the job :
pthread_cond_t * a = new pthread_cond_t();
pthread_cond_t * b = new pthread_cond_t();
...
2
votes
1answer
34 views
RegEx like conditional statements (with tags)
I have 12 images and I wanted to check if they were all invisible. So I would have to check if they were either hidden or if they just had no content in them. Rather than check if each one was hidden ...
-3
votes
1answer
42 views
And operators usage of && and !== in java
This is my first time looking into java and I'm trying to make this statement work.
[if {(a) && (b) && (c) && (d)}!==0] {a}{b}{c}{d}
Asssuming a b c d were all numbers ...
0
votes
0answers
11 views
creating new column in an R dataframe based on values in multiple columns
I have the following data frame including restaurants (id#) ,owner and purchase date. Sometimes the restaurant changes ownership, but for analysis purposes I want to create another column which only ...
0
votes
0answers
16 views
Automatically move data between tables on condition
I have an Excel 2007 spreadsheet titled "Generic". It has 3 sheets called "Sheet1", "Sheet2", and "Sheet3". Each sheet has a single table called "Table1", "Table2", and "Table3" respectively. The ...
-2
votes
4answers
104 views
Performance difference between else if( cond ) {} and else { if( cond ) {} }
I was rewriting some of my old code today to optimize it and make it slightly more legible (as some of it was pretty shoddily annotated) and I came up wondering if there was any technical performance ...
-2
votes
0answers
12 views
What probability law (in disguise)? [closed]
It may be a basic probability law in another form, but I cannot figure it out. Why can we say the following:
P(A,B|C) = P(A|B,C)*P(B|C)
Thank you.
1
vote
1answer
58 views
How to declare a reference variable to persist between conditional blocks?
How should I declare a reference variable if I plan to use it throughout a number of conditional blocks? E.g.:
for (i = ...) {
if (expr_1(i)) {
// y[idx(i)] only exists when expr_1 is ...
0
votes
5answers
52 views
show hide element on mouse hover
I'm trying to show/hide span tag on mouse hover of another element
<li class="requirement" id="requirement_1">
<h3><a href="#">REQ 2 - QWERTY</a></h3>
<span ...
0
votes
2answers
48 views
Devexpress Double conditional FormatString
I'd like to conditionally change the FormatString property of a grid's column.
The input is a double.
What I want to do is the following :
if (cellValue % 1 == 0)
...
0
votes
1answer
38 views
AS3 Check if two movie clips are the same colour?
I'm trying to make a connect the dots game and I've run into a snag.
How can I check if two movieclips are the same colour? Using colorTransforms, I've made it so that when you hover over one dot it ...
-1
votes
1answer
48 views
How can I add multiple & conditions in if statement in codeignitor
I am trying to multiple & conditions in if statement in Codeignitor. If I use 2 conditions like below :
#<?php if (trim($var1) == '' & trim($var2) == '') : ?>#
Then it works fine. But ...
2
votes
4answers
58 views
How do I check if one of multiple macros is defined in a single #ifdef?
I have some C++ code, and want to perform an action if the __APPLE__ or __linux macros are defined.
If I did it as a normal if conditional, it would be easy using ||:
if (something || something) { ...
