Viewing 15 posts - 91 through 105 (of 152 total)
Oh well, I liked the thinking anyway 🙂
November 16, 2012 at 3:27 am
Parameters don't have a hidden property as such do they? You've got the visibility option which is a radio button selection but there's nowhere to enter an expression.
Am I...
November 16, 2012 at 1:47 am
What have parameters got to do with it. Just take whatever expression you're using for the hidden property and use it's inverse as the filter property.
November 14, 2012 at 11:24 am
I generally use the filters rather than hidden because that explicitely excludes the row. Would that work for you?
November 13, 2012 at 8:15 am
Never actually quit but have thought about it once or twice. There's nothing worse than trying to "look busy" for 8 hours a day. Looking at Lolcats can...
November 5, 2012 at 8:01 am
I work in the U.S. My employer supplies the equipment, but they own it outright and are just lending it to the employee during their contract. Of course, contracters are...
November 5, 2012 at 7:55 am
Perry Whittle (10/26/2012)
--------------------------------------------------------------------------------
Brandie Tarvin (10/26/2012)
--------------------------------------------------------------------------------
Supply their own equipment? I mean, phones I get. But laptops?
This is quite common for contract staff
Not where I work it isn't. We have desk, cubicles,...
November 5, 2012 at 7:40 am
Sounds like a reasonable technique to me. Assumes 3D mental imaging skills that some people might not have, and which probably aren't applicable to most DBA/dev tasks, but that itself...
August 9, 2012 at 11:53 am
Wierdest interview I ever has was only about my second job after finishing my degree. The boss turned up an hour late and the only thing he seemed interested...
August 9, 2012 at 8:25 am
You will only get a column in the matrix if there's a row in your dataset that contains a value for that column. So if your dataset contains e.g.:-
Month...
August 9, 2012 at 7:48 am
I just had another thought. It's a fudge but it'll work. I've simply ammended the query for the main report dataset to return this field for the chosen...
July 11, 2012 at 2:04 am
I don't think that's what I'm after but I might be miss-understanding you.
To be clear, when the user picks e.g. row 8 in the drop down box, I want to...
July 11, 2012 at 1:50 am
Oooh, I like that. Yep, that'll do me.
July 6, 2012 at 7:31 am
This will get you the date for last sunday:-
SELECT DATEADD(wk, DATEDIFF(wk, 6, GETDATE()), 6)
This will get you last sunday - 52 weeks
SELECT DATEADD(wk, -52, DATEADD(wk, DATEDIFF(wk, 6, GETDATE()), 6))
so this...
July 6, 2012 at 7:19 am
Yeah, I did think of that. But what would that mean if the user selects "Show None" and "Chart A"? I could arbitrarily say that Show None always...
July 6, 2012 at 6:53 am
Viewing 15 posts - 91 through 105 (of 152 total)