python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
CASE expression syntax in Computed Column not working
I'm trying to write a CASE expression that evaluates the data in a field called "MembershipType," and makes a logical computed column go from false to true if any of the following are entere...

Richard Hartnett
Votes: 0
Answers: 1
Why can't return be expressed in one line when using a Switch Expression?
while (true) {
console.mainMenu();
String inputCommand = console.input();
switch(inputCommand) {
case "exit" -> return;
case "create" -> {
...
yongc
Votes: 0
Answers: 1
Failed to copy Field with expresion which contains call to function in Tablix SSRS
In a SSRS report (VS 2019), in a Tablix I have a cell which contains an expression like below:
=Code.Quotient(Fields!MyField1.Value, Fields!MyField2.Value, -1)
where Quotient is a function I wrote in...
George
Votes: 0
Answers: 0
How to evaluate a character string when numeric is needed in R?
I want to change a numeric into a factor, but my factor level is given as a character string while the function factor needs a numeric. How do I convert it into a numeric or evaluate the character str...

Brigitte
Votes: 0
Answers: 1