Tagged Questions

2
votes
3answers
62 views

Insert a Newline in Excel Formula (MacOS)

I am using MS Excel on a Mac. I have a formula. Guests!A1 & " " & Guests!B1 & I WANNA PUT NEWLINE HERE Guests!C1 ... How do you do this???? Thx!
1
vote
4answers
89 views

Tool to help write Excel formulas and IF statements?

This is an Excel formula with nested IF statements: =IF((B2="East"),4,IF((B2="West"),3,IF((B2="North"),2,IF((B2="South"),1,"")))) To essentially accomplish this: If cell B2 = " …
3
votes
4answers
548 views

Outputting HTML to Excel, How To Force Numbers ?

I need to achieve the following when outputting HTML to Excel (Response.contentType="application/vnd.ms-excel") : a) force Excel to consider content of td cells as numbers b) mak …
1
vote
1answer
390 views

Crystal Reports - “A string is required here” formula error.

I have a command line utility that generates one simple crystal report. I recently updated the project from .NET 1.1 to .NET 3.5 using the Visual Studio 2008 migrator and am now g …
0
votes
0answers
67 views

How can I compare frequencies and intercept event dates in Excel?

I need a way to look at one type of event as a basis, and then graph how several other events interact with the base event. Example: data set of events has occurred for a group of …
1
vote
3answers
566 views

Fill textbox with current username logged in sharepoint.

I made a custom list, it is actually a form fill out for an absence request workflow. Before publishing it I found a flaw. The first textbox is a Person or Group textbox, this help …
1
vote
1answer
394 views

How do I export a reporting services report to excel with embedded calculations in the excel columns?

I'm looking to allow the user to export an reporting service report to Excel. The question I have is how do I specify a formula within Reporting Service which is then present as an …
2
votes
7answers
2k views

SQL Date Formulas

I need a date formula in Oracle SQL or T-SQL that will return a date of the previous week (eg Last Monday's date). I have reports with parameters that are run each week usually wi …
1
vote
6answers
254 views

Java: Is there a tool available that can allow me input, store, and evaluate math formulas?

Even something very rudimentary is fine. Like entering and evaluating something like x+1, where x is a variable I get to specify. I was thinking of writing my own using Strings f …