Re: Designers, Where Do You Get Your Visuals? Digital Media UI / UX Design by jkon … account and payment). Especially for icons, lately we've been grouping them into a font file using https://icomoon.io/app… grouping data in rdlc file Programming Web Development by prince23 hi, i need to group data for 2 groups in the report like: project name is dependent on client name , task name, start date is dependent on project name , i tried but we cannot do grouping more than 1 group in the report if any solution on it would be great thank you Grouping in xslt 1.0 Programming Software Development by saraswathy6 …) I don't have the luxury of using XSLT2.0 grouping. Can someone please tell me how can I achieve this… Re: Grouping in xslt 1.0 Programming Software Development by iceandrews … basically have to break it down into phases of sorting, grouping, then processing. In 2.0, you can do all of… grouping cfoutput results Programming Web Development by ziggydog … I am having problems with pagination using cfloop and the grouping of cfoutput in nested cfoutput tags. The code below lists… Re: grouping cfoutput results Programming Web Development by arrgh > I am having problems with pagination using cfloop and the grouping of cfoutput Trying to combine cfloop start/endRow and a grouped output is just asking for pain. I honestly doubt it's possible. You either need to do *real* pagination ie only return x records in the query or drop the grouped output. Re: Grouping using while loop Programming Web Development by LastMitch >Grouping using while loop I assume the code you provide works and when it echo out the info the results look like this: year quanitity name 2012 10 john 2012 20 mark You want the output to look like this: year : 2012 name : john quantity : 10 name : mark quantity : 20 Am I correct? LINQ question about grouping Programming Software Development by ddanbe …if I could avoid to write two times `grouping.Sum(s => s.Item1)` It …tp2.Terms) group t by t.Item2 into grouping where grouping.Sum(s => s.Item1) != …new Tuple<double, uint>(grouping.Sum(s => s.Item1), grouping.Key) ).ToList(); return Result;… Re: LINQ question about grouping Programming Software Development by tinstaafl Have you tried assigning `grouping.Sum(s => s.Item1)` to a…(tp2.Terms) group t by t.Item2 into grouping let groupingsum = grouping.Sum(s => s.Item1) where groupingsum…0.0 select new Tuple<double, uint>(groupingsum, grouping.Key) ).ToList(); return Result; } This way you … Assigning ids while grouping Programming Software Development by siddhithakkar … have an input code which is a complete flat structure- grouping of elements is desired out of it, and each such… have an id as well. We have managed to get grouping done but now stuck at the id bit. I would…] 4) My current code is giving a perfect output for grouping, only id values need to be worked upon. Getting some… adding items to arraylist but grouping Programming Software Development by andyhunter if items are added into an arraylist would another arraylist be required for grouping items or would a hashmap or something else be required i.e. title, firstname, last name etc saved indvidually but therefore grouped to equal person 1 and so on ? the reason for grouping is to edit the grouped items from the arraylist individually or all. number grouping algorithm, is there a library for that? Programming Software Development by Jsplinter … starting a search for a library or code sample for grouping numbers together based on their distance from one another. For… something out there. Is there another name for "number grouping algorithm"? Re: adding items to arraylist but grouping Programming Software Development by thekashyap In OOAD grouping of related attributes (e.g. FirstName, LastName, Title,..) is achieved by creating a class (say Person) and adding "FirstName, LastName, Title" as attributes/member-variables to the class. Now each instance of this class would have all the attributes. What you then do is create an ArrayList of Person. Try Grouping Files for Effortless Manageability Hardware and Software Microsoft Windows by Dani …'s helpful:[/i] [font=Arial][size=5][color=#0000ff]Try Grouping Files for Effortless Manageability[/color][/size][/font] [font=Arial] [list… TOP seven data and grouping Programming Databases by Cano82 The tables are joined. I want to display last 7 data with grouping their category My tables: Category: categoryId, categoryName Order: orderId, catgoryId, product Re: TOP seven data and grouping Programming Databases by mellamokb … are joined. I want to display last 7 data with grouping their category[/quote] I am going to guess this means… Is Complex grouping possible in JSP Programming Web Development by michrods … all the teachers handled by the Principal. [B]Is this grouping possible using JSP.[/B] Please help me!! Thanks. Complex grouping problem. Programming Software Development by iskinner …] I have this demonstration xslt that will create the desired grouping without relation to the XML. [CODE] <xsl:stylesheet version… how do i get total values in a row by grouping into diffrent categories Programming Web Development by mayreeh how do i get total values in a row by grouping into diffrent categories. here is my code bt its getting … Common Table Expression Grouping numbers incorrect Programming Databases by nickg21 …. I assume it is with my left outer join statement grouping but I am not sure how I would change this… Rank-Grouping by 2 columns Programming Databases by gbhs … how to rank (desc) the following sample ExamScores by CourseID , grouping by Level. Some help needed. gbhs Newbie Level StudentID CourseID… Re: Grouping in xslt 1.0 Programming Software Development by saraswathy6 You are awesome. Thank you very much for such a quick and timely solution to this complex problem I've been facing for days. Re: Grouping in xslt 1.0 Programming Software Development by iceandrews Hahahaha. You're welcome. My solution is ugly as sin and definitely quick (and dirty). I take no responsibility for it, and the problems it may cause you, at all. Re: mysql query headaches - sorting/grouping Programming Web Development by BenWill … to next loop, amount time took messing with the sorting/grouping when one little if statement fixed things for me! Argh… Re: Pattern Matching and Grouping Programming Software Development by aru211285 Thank you very much for the reply. It worked but im curious to know how can we do this with grouping.....so that i can handle complex regular expressions .... Re: asp.net Datalist Grouping Dynamically? Programming Web Development by kvprajapati …]http://consultingblogs.emc.com/jomitvaghela/archive/2007/03/26/Alphabetical-Grouping-with-Nested-Datalist.aspx[/url] Please show us your code… Re: query grouping issue with 'latest version' subquery Programming Databases by |-|x … functions, although in this case MySQL's handling of the Grouping is sufficient as the primary table will not return duplicate… grouping unique name in table Programming Databases by chai Hi! i have a table with 3 fields: ParentFolder,DocumentNo and VersionNo the DocumentNo give each document a unique number. ParentFolder is a number specifying which folder a document is in. and each document(with same name) can have many VersionNo(1,2,3 etc). i am creating a house keeping function for user. this function accepts a number … Re: grouping unique name in table Programming Databases by jwshepherd you will either need to add a second table to keep track of document names and Document numbers relations or add a DocumentName Column to your table. Re: grouping unique name in table Programming Databases by pclfw Sounds like work for a stored procedure. The problem being that the easiest way to do this is to have a sub-query select the documents grouped on the parentfolder and documentnumber, and use a 'TOP X' qualifier. Then have the main select query use the output of the subquery with the NOT IN comparison.