|
I'm on a project to create a skills matrix for about 200 people and am hoping to not have to reinvent the wheel. Users will fill out and maintain their skill proficiencies using yes/no and radio or combo inputs. Skills are grouped by category (Technical...
Started by Nicholai on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The hard part with Drupal is the....
As @sprugman pointed out, use the Content Profile , together with CCK you can customize the profile page at will .
You can manage the skill using the Taxonomy.
This will do your trick.
Drupal with Views, CCK, VotingAPI.
|
|
How do I exclude one value from a grouping sum, based on a value of another field?
ie I open Report=> Report Properties=>Code and insert my Custom Code, but how would I change the below code to exclude a numeric value of another field for the below...
Started by Greg on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
On the same row includes "Others", and that the function you've supplied is used as the grouping criteria.
|
|
I have a report in Reporting Services and there is a group that is based around a field value. I want the group to repeat itself on the report as many times as there are rows with that field. The problem is that using Field!field.Value seems to only pull...
Started by kd7iwp on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Can you add a calculated fieldIs there a second field that you can use a "dummy" (aka tie breaker, key etc), to include to the dataset, such as Rownumber to ....
Edit: after comment.
In the grouping to make it unique?
This is how I'd do it.
|
Ask your Facebook Friends
|
I have the below query, which basically it retrieves the 5 top most books sold:
select top 5 count(id_book_orddetails) 'books_sold', bk.* from orderdetails_orddetails ord inner join books_book bk on ord.id_book_orddetails = bk.id_book group by id_book...
Started by Andreas Grech on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Another option is to keep the column stored as NTEXT, but GROUP BY only book_id by putting the count_book_orddetails) GROUP BY bk....
Answer question 1, but here's an answer to question 2: instead of select and grouping on desc_book.
|
|
I'm trying to return duplicate records in a user table where the fields only partially match, and the matching field contents are arbitrary. I'm not sure if I'm explaining it well, so here is the query I might run to get the duplicate members by some ...
Started by Mitch Weaver on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
For me; may not do what you want:
SELECT MAX(ID) FROM members WHERE Email like "%someuser%" GROUP.
|
|
I am using LINQ to EF and have the following LINQ query:
var results = (from x in ctx.Items group x by x.Year into decades orderby decades.Count() descending select new { Decade = decades.Key, DecadeCount = decades.Count() });
So this kind of gets me ...
Started by ChrisHDog on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
How about grouping by x.Year/10? (haven't tested this!)
var results = (from x in ctx.Items group x by (x.Year / 10 * 10) into decades orderby decades.Count() descending select / 10 * 10) to get, for example....
An IEnumerable of IEnumerables.
|
|
I have next xml:
<page> <document> <id>1001</id> <cur>USD</cur> <date>01.01.2009</date> <amount>10</amount> </document> <document> <id>1001</id> <cur>USD</cur...
Started by Roman on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Within the template i then loop through the individual documents and finally i summarize the documents amount field.
I later apply the templates to the first document in each group.
fields, id and cur.
|
|
Hi,
I'm trying to group based on two fields. The FROMMH and the TOMH contain ID values for manholes and I want all of the results for (as an example) MH-G10-0001 to show up in the same group, regardless whether they are the FROMMH or the TOMH.
I've tried...
Started by bbulla on
, 11 posts
by 3 people.
Answer Snippets (Read the full thread at access-programmers):
OK, the this seems to be working but with some - MH-E11-0002
27/11/2011 - MH-E11-0002 - MH-E11-0003
And another group for MH-E11-0003 with these records - MH-E11-0003 - MH-E11....
Report and group on the field called 'GroupingField'.
|
|
Grouping in grid V11 on multiple fields Is it possible in V11 to make a grid group on two fields such as by company by program name?
I have both fields in the grid. I can only see where you can select 1 field in Group Breaks> Define group breaks.
Started by lemandras on
, 6 posts
by 4 people.
Answer Snippets (Read the full thread at alphasoftware):
Re: Grouping in grid V11 on multiple fields I don't think that's possible right now, but I want (CHS)
http://www.CHSBuilderSoftware.com Re: Grouping in grid V11 on multiple fields I needed to do something similar, so I created....
|
|
Hello all,
To start, can anyone tell me what Concentration camp they liberated during the Holocaust?
William Kramer
Started by all1knew on
, 15 posts
by 2 people.
Answer Snippets (Read the full thread at wehrmacht-awards):
Not sure what if any camps were there? Where were they when they went into Germany, perhaps attached to something bigger? Is it allowed to ... .
Looks like they were in Italy.
|