Viewing 14 posts - 1 through 15 (of 15 total)
I figured it out, and it was much easier than I thought 🙂
=iif(left(Parameters!Search.Value,6) = "Amount","'$'#,0","#,0")
February 7, 2013 at 3:23 pm
This works great, but is only accounting for those with FieldID =1. Would you just double the code and change your WHERE statement to FieldID = 2?
February 7, 2012 at 9:18 am
Sean Lange (2/6/2012)
As to getting the resultset of all possibilities...
What do you want that to look like? I know it was just assigned...
February 6, 2012 at 1:06 pm
Sean Lange (2/6/2012)
mmiller 85218 (2/6/2012)
I still am curious why you need to have a dataset with all possibilities.
Well, they want a count of all total possibilities...with that, i can apply...
February 6, 2012 at 12:47 pm
I still am curious why you need to have a dataset with all possibilities.
Well, they want a count of all total possibilities...with that, i can apply the factoral mathematics and...
February 6, 2012 at 12:30 pm
J Livingston SQL (2/6/2012)
mmiller 85218 (2/6/2012)
Sean Lange (2/6/2012)
J Livingston SQL (2/6/2012)
4 type of Colour
3 type of Size
5 type of Flavour
2*4*3*5 = 120 combinations
though how they...
February 6, 2012 at 12:20 pm
Sean Lange (2/6/2012)
J Livingston SQL (2/6/2012)
4 type of Colour
3 type of Size
5 type of Flavour
2*4*3*5 = 120 combinations
though how they are related beats me 😀
edit...
February 6, 2012 at 10:56 am
though how they are related beats me 😀
LOL They aren't, its just replica data of actual data I'm working with 🙂
February 6, 2012 at 10:43 am
I have read up on the combinations code, and will view the links you sent. I know the request is odd, I have told the requestor that there are...
February 6, 2012 at 10:33 am
I just know by the data but for this sample table, I am assuming that CatID 1 and CatID 3 can only have one option, the other 2 can have...
February 6, 2012 at 10:06 am
I need the actual possiblities because I will need to tie the results to actual programs we run and the combinations of all of them.
February 6, 2012 at 10:02 am
The results are based on the FieldId. So the first example 1/3/7/10 would be
CatId 1 FieldId 1
CatId 2 FieldId 3
CatId 3 FieldId 7
CatId 4 FieldId 10
FieldID could be replacedwith...
February 6, 2012 at 9:55 am
They aren't represented in the database, I would just code for it if possible.
February 6, 2012 at 9:47 am
I need results as they show in my first post. So the actual combination of the different possiblities.
February 6, 2012 at 9:37 am
Viewing 14 posts - 1 through 15 (of 15 total)