0
votes
1answer
11 views
Group XDocument.Descandants
How to group xml element values
XDocument.Descandants("Customer").GroupBy(c=>c.Element("ServiceId"));
This is not working.
Is there any way to group this?
0
votes
2answers
77 views
Self-Joins, Cross-Joins and Grouping
I've got a table of temperature samples over time from several sources and I want to find the minimum, maximum, and average temperatures across all sources at set time intervals. A …
0
votes
1answer
36 views
Grouping with SubSonic 3
I have the following table "GroupPriority":
Id Group Priority
1 1 0
2 2 0
3 3 0
4 2 1
5 1 1
6 …
2
votes
4answers
57 views
Python organizing data with multiple dictionaries
I am trying to create a small server type application and have a question regarding organizing data with dicts. Right now I am grouping the data using the connection socket (mainly …
1
vote
2answers
31 views
technical way of managing files - grouping files in xcode
I am in iPhone development since last 3 months.
Usually, While inserting a view Controller, I just right click on Classes & add new group.
& Within that group I just add …
0
votes
0answers
21 views
Crystal Reports: How to hide a group in a grouped report?
I have a report grouped by Class1, Class2, Class3, ShortDesc, CreateDate.
It looks like this:
Class1 Class2 Class3 <- This is GroupHeader1 (I did it this, way to save space)
…
1
vote
3answers
81 views
How do I group by a property in an object collection using LINQ?
Hi,
I have a collection of objects as Dim XXX As IEnumerable(Of MyObject) which has been populated. There is a property in MyObject that I want to group by, for example MyObject.M …
0
votes
1answer
35 views
Javas DecimalFormat: how to reject “invalid” input with grouped decimals?
When using the following NumberFormat:
NumberFormat amountFormat = NumberFormat
.getNumberInstance(I18N.getThreadLocale());
amountFormat.setMaximumFractionDigits(2);
amountFo …
1
vote
2answers
47 views
awk script grouping with array
i am trying to execute awk script below on solaris but it's giving error like
awk: syntax error near line 3
awk: bailing out near line 3
where is error can you help me to fix it …
0
votes
1answer
37 views
Crystal Reports XI Custom Group Field
I need to create a provider Name group which is based on any or all of three fields that contain service provider codes. Each Service Provider Code links to its own SP_Program_Loc …
4
votes
3answers
60 views
Grouping controls together on an Access form
Hi,
I have an Access2003 form where I wanted to group several controls together and change visibility programatically, though VBA code.
Is this possible? I do know that I can g …
4
votes
5answers
175 views
How do I create a text file so when it is opened in Excel, rows are grouped together?
I'm collecting some data via a Perl script. The data needs to be reviewed and processed by others using Excel. Currently, I'm writing the data out as a tab-delimited text file, a …
0
votes
1answer
19 views
Metadata in SVG
Hi,
Is there a way to attach metadata directly to a grouping element () in an svg file? I couldn't find anything about that in the specification or elsewhere on the web, so I assu …
0
votes
2answers
84 views
Grouping by week/month/etc & ActiveRecord?
I'm doing some statics calculation in my product. A user has performed a number of operations, let's say posted comments. I want to be able to show them how many comments they've …
1
vote
3answers
138 views
intelligently generating combinations of combinations
Let's say I have a class of 30 students and want generate every possible way in which they can be partitioned into groups of 5 (order is irrelevant).
I know how to find all the co …
