May 3, 2017 at 4:47 pm
Jason A. Long - Wednesday, May 3, 2017 3:46 PMApparently there are far too few people who know how to do green bar in an SSRS tablix...
So here's how...1) Go to the Report Properties dialog box and select the Code tab and paste in the following code...
Private bOddRow As Boolean
'*************************************************************************
' -- Display green-bar type color banding in detail rows
' -- Call from BackGroundColor property of all detail row textboxes
' -- Set Toggle True for first item, False for others.
'*************************************************************************
Function AlternateColor(ByVal OddColor As String, _
ByVal EvenColor As String, ByVal Toggle As Boolean) As String
If Toggle Then bOddRow = Not bOddRow
If bOddRow Then
Return OddColor
Else
Return EvenColor
End If
End Function2) Put focus on the left-most cell in the details section and look for the "BackgroudColor" property in the properties section and paste in the following expression...
=Code.AlternateColor("#d7e4f4", "Transparent", True)For all the remaining columns (2 - N) do the same thing but use a slightly different expression... (switch from "True" to "False")
=Code.AlternateColor("#d7e4f4", "White", False)Congrats, you now have legit "green bar"... On in this case (using #d7e4f4) "blue bar".
Well, actually, if you want the true green bar (or blue bar) effect it should be every three lines alternating color, not every line alternating color. That is how the real green/blue bar paper looked like when I worked as a computer operator and actually printed reports using high speed line printers back when dinosaurs shared the planet with us.
May 3, 2017 at 5:17 pm
Lynn Pettis - Wednesday, May 3, 2017 4:47 PMWell, actually, if you want the true green bar (or blue bar) effect it should be every three lines alternating color, not every line alternating color. That is how the real green/blue bar paper looked like when I worked as a computer operator and actually printed reports using high speed line printers back when dinosaurs shared the planet with us.
Fair enough... Unfortunatly I didn't write that wee bit of VB myself... I'm certain that toggling every 3 rows would be doable for someone better versed in writing VB or C#.
Either way, the same methodology should work.
May 3, 2017 at 6:17 pm
Lynn Pettis - Wednesday, May 3, 2017 3:36 PMCould be, but if it is, why doesn't he/they answer questions here?
Maybe they got sick of people asking for more information. In my experience, SO was more of a quick, one-line answer forum back when I used it several years ago. When I posted something that was flagged as too detailed and the one-line answer marked as the answer wasn't the best approach, I turned my back and never looked back.
May 3, 2017 at 6:19 pm
Jason A. Long - Wednesday, May 3, 2017 5:17 PMLynn Pettis - Wednesday, May 3, 2017 4:47 PMWell, actually, if you want the true green bar (or blue bar) effect it should be every three lines alternating color, not every line alternating color. That is how the real green/blue bar paper looked like when I worked as a computer operator and actually printed reports using high speed line printers back when dinosaurs shared the planet with us.
Fair enough... Unfortunatly I didn't write that wee bit of VB myself... I'm certain that toggling every 3 rows would be doable for someone better versed in writing VB or C#.
Either way, the same methodology should work.
I remember he stone ages. The old 132-column printers could spit out COBOL code like nobody's business. I don't miss the days of the mainframe.
May 4, 2017 at 12:59 am
jasona.work - Wednesday, May 3, 2017 1:16 PMBrandie Tarvin - Wednesday, May 3, 2017 11:48 AMOhho! I just realized I'm an expert in something!
"Brandie is an expert in translating PEBKAC BS into English and dissecting 'simple' requests down to their constituent components designed to showcase the business rules broken by these requests."
Yes, I'm being a bit of a smart alec here, but seriously. We need more people educated in how to do this sort of thing. @=)
So you mean translating the "I want it to do this" to "I need it to do this which is something completely different than what the "I want" was?"
The daily struggle of the report writer.
'I'd like a report that shows me this'
'You realise you'd get more meaningful data on the back of a cereal box'
'Will I? Never mind, build the report anyway.'
.
.
.
'This report doesn't show me what I need to see. I think it would be better if it did this'
:crazy:
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
May 4, 2017 at 1:03 am
Lynn Pettis - Wednesday, May 3, 2017 3:36 PMCould be, but if it is, why doesn't he/they answer questions here?
I'd say this is more evidence for multiple people using one account. The way the answer is written is very different from some of the questions posted here. That user name and avatar look very familiar though.
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
May 4, 2017 at 1:27 am
jasona.work - Wednesday, May 3, 2017 8:14 AMSo, the talk about what people do or don't know about SQL got me thinking...
How would *you* describe (in general) your knowledge base, not only of SQL but of the underlying infrastructure (OS, networking, storage, etc) as well?
Would you describe yourself as "broad, but shallow with a few deep spots," or "fairly narrow but deep, deep, deep," or something else?
I would even include in describing your knowledge, the ability to choose the search terms to get you to the knowledge you need to accomplish something quickly while filtering out the "garbage" results.Myself, I'd probably describe my knowledge as being very broad, relatively shallow, with a few deeper spots.
What about you? How would you describe yourself?
I was once asked in an interview about what level I believed I was.
"Better than average, but I think 'average' is pretty low.". At that time I had worked with a contractor who actually generated more work than he completed and had come across a Dev DBA who's CV looked amazing and was truly awful.
May 4, 2017 at 2:12 am
Jason A. Long - Wednesday, May 3, 2017 3:46 PMApparently there are far too few people who know how to do green bar in an SSRS tablix...
So here's how...
Depending on the complexities of the reportIIf(RowNumber(Nothing) Mod 2, "White", "Green")
Far away is close at hand in the images of elsewhere.
Anon.
May 4, 2017 at 3:09 am
Ed Wagner - Wednesday, May 3, 2017 6:17 PMLynn Pettis - Wednesday, May 3, 2017 3:36 PMCould be, but if it is, why doesn't he/they answer questions here?Maybe they got sick of people asking for more information. In my experience, SO was more of a quick, one-line answer forum back when I used it several years ago. When I posted something that was flagged as too detailed and the one-line answer marked as the answer wasn't the best approach, I turned my back and never looked back.
Stack Overflow is pretty much unusable.
May 4, 2017 at 3:18 am
Beatrix Kiddo - Thursday, May 4, 2017 3:09 AMStack Overflow is pretty much unusable.
I', really not a fan of it either. I remember finding it quite difficult to get along with.Trying to paste code in and it telling me I had to indent it all (it was), so ended up asking questoins without my code. Unsurprisingly, I was asked for the code in question, which I couldn't paste! I even tried uploading it else where and putting the link in my post, but you had to have "reputation" to put hyperlinks in your posts...
I've never posted again, and never use it unless it comes up in a Google search. First Impressions are everything 😛
At least here I can paste my SQL (although SSC takes my formatting and spits it after it's had a nice blend 🙁 ).
Thom~
Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
Larnu.uk
May 4, 2017 at 4:18 am
Thom A - Thursday, May 4, 2017 3:18 AM(although SSC takes my formatting and spits it after it's had a nice blend 🙁 ).
SELECT GarbleGargleBlaster being #()*%$JGFGFS
May 4, 2017 at 6:21 am
RandomEvent - Wednesday, May 3, 2017 7:56 AMTom_Hogan - Wednesday, May 3, 2017 7:38 AMJeff Moden - Tuesday, May 2, 2017 2:21 PMThat's "just" T-SQL.
Do you know how to stand up a VM? Can you do more that make a simple SSIS package like one that will cycle through files and do parallel imports based on the file names and or directory names? Do you know how to setup a matrix driven report in SSRS and color every other line as if it were "green bar" paper. Have you ever successfully setup a data warehouse for SSAS? Do you know how to use Service Broker? Can you setup log shipping or transactional replication? Can you shred simple XML without having to lookup how to do it? Do you think that "BI" is something other than an oxymoron? 😉
I don't even know how to get into the IDE for most of those (mostly because I've not needed to), haven't done some of those in nearly two decades, and won't do some of those even if you hold a gun against my head. Don't get me wrong. I've made a pretty good living at making some of those things unnecessary for the kind of work I've had to do (ETL is a prime example there) but there's a lot that I'd have to study to use any of the things I mentioned and more.
Every one has their specialties and their generalities. Mine don't include any of the things I've included above. If yours do (and I'm pretty sure they do), then you're a whole lot smarter than me (unless you consider avoiding those things as "smart" and then I might be the king of the hill 😉 )
1 - VM - No
2 - SSIS - Yes
3 - SSRS - Have to look some things up
4 - SSAS - Yes
5 - Service Broker - No
6 - Replication - Yes (unfortunately)
7 - XML - No
8 - BI - I know never to do a Google search for just "bi"
Three and a half to four out of eight. Better than I hoped.Trying to get out of my comfort zone and become more active in the community (and these forums). Is there some sort of guide as to how to use them somewhere? I marked all the forums as read yesterday but when I go into individual threads they show as read even though there's been activity since I marked them read. I no longer have the option to go to the first new post.
So a BI developer is an oxymoron and there was me thinking that they where talking about his sexuality 🙂
Heh... too funny. But, no. The BI Developers aren't oxymorons. It's just BI (IMHO) that frequently is. I've seen too many people be thrilled with pretty stuff and the ability to quickly stack and restack pivots and a whole bunch of other information and still come to the wrong conclusion. It cost 1,500 out of 3,000 people their livelihood at a company I once worked for because the officers of the company (lowest level all the way to the GM) didn't listen to what the data was saying even when someone tried to point it out. Using the same "pretty pictures" they were using, I predicted the month and year they would need to do the layoffs two years ahead of time and couldn't get anyone to listen.
--Jeff Moden
Change is inevitable... Change for the better is not.
May 4, 2017 at 6:24 am
Jeff, I take it you weren't there by the time that month and year rolled around?
EDIT: as in left under your own power because you could see the hammer coming?
May 4, 2017 at 6:27 am
Thom A - Thursday, May 4, 2017 3:18 AMBeatrix Kiddo - Thursday, May 4, 2017 3:09 AMStack Overflow is pretty much unusable.I', really not a fan of it either. I remember finding it quite difficult to get along with.Trying to paste code in and it telling me I had to indent it all (it was), so ended up asking questoins without my code. Unsurprisingly, I was asked for the code in question, which I couldn't paste! I even tried uploading it else where and putting the link in my post, but you had to have "reputation" to put hyperlinks in your posts...
I've never posted again, and never use it unless it comes up in a Google search. First Impressions are everything 😛
At least here I can paste my SQL (although SSC takes my formatting and spits it after it's had a nice blend 🙁 ).
Whether using FireFox or IE, I've found that the "patch" for that is to make sure that you use the "tabs to spaces" option in SSMS and, when you're ready, copy your code, paste it into NotePad, copy that and paste it into the SQL IF Code block.
It's a real shame that the upgrade screwed up the code windows so bad. After the last upgrade (more than a decade ago, it seems), they had similar problems for years and finally got it mostly right even with a direct copy'n'paste from SSMS. You would think that they'd have applied some of that old code to the new stuff here. They really need to make it a whole lot easier for people to paste code and have it be somewhat readable.
--Jeff Moden
Change is inevitable... Change for the better is not.
May 4, 2017 at 6:53 am
Brandie Tarvin - Thursday, May 4, 2017 6:24 AMJeff, I take it you weren't there by the time that month and year rolled around?EDIT: as in left under your own power because you could see the hammer coming?
No... I stayed knowing the hammer was coming and even after the hammer fell for a couple of reasons. The first reason was that I mistakenly thought that I could help prevent it by showing people how to analyze the very reports (all on paper back then") that I had helped to create. The second was that was in a position to help and NavSea and SeaBat (two departments of the Navy) loved me because I was the non-standard-parts Committee Chairman (think "DBA" for over expensive materials), an expert on several cabinets of a multi-million dollar sonar system (electronics, installation, troubleshooting, parts sources, etc, etc), had a major impact on cutting costs and preventing waste, design advisor, electronics testing advisor, and was the first person that figured out how to and actually did downloads from the IMS and other mainframe systems to make the reporting on these new fangled things called "PC"s (another fellow and I formed the "PC Support Group") on Lotus Symphony spreadsheets, built and installed more than 1,500 PCs, and created/taught classes on how to use them not only to create their own reports but how to use them to analyze the "going out of business" trend that I saw. I stayed after the layoffs because I continued to have a pretty good impact on the quality and safety of the sonar systems we delivered to the Navy, which helped keep a lot of people that were "at sea" on subs and surface craft ("targets" as I affectionately called them) a whole lot safer. I also thought that my efforts in the computational world and the trust I was building for the company with the Navy might help win more contracts so that the people that did get laid off might be able to be hired back.
Overall, I was with the company for 15 years before someone made me an offer I just couldn't refuse.
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing 15 posts - 58,426 through 58,440 (of 66,712 total)
You must be logged in to reply to this topic. Login to reply