Hi - When using the formula: SUBSET_UNIQUECOUNT([ProjectId],subset([locplaats])).
I get the following message:
Cannot use field value references. This formula is evaluated in the context of multiple records, without any specific individual record. You must identify the summary function, such as: SUBSET_SUM([locplaats]) or SUBSET_MEAN([locplaats]). If using SUBSET([locplaats]), you must specify at least 2 arguments, such as SUBSET([locplaats], "Required value").
I think this is a bug, or I am doing something completely wrong. Please advise... Thanks! (Running 2.7 b413) Regards, Alexander
In my dataset I have 17 different values for [locplaats]. I want to calculate the number of unique projects [ProjectID], for every value in [locplaats].
So how many projects do I have where [Locplaats] is identical (in other words: one value)
Formula = SUBSET_UNIQUECOUNT([ProjectID],SUBSET([Locplaats])) will return 1 against each Locplaats, if there is only one ProjectID per Locplaats. For 17 different values, each Locplaats will have 1 in the formula result field.
If you wish to find out how many Locplaats have 1 ProjectID against them: SUBSET_UNIQUECOUNT([Locplaats],SUBSET([Formula],"1","=")) for all different values, in this case you will have 17 in each row.
Hi Alexander, You can do this in two steps: - Introduce field to concatenate the two values Field C= [Field A]+” “+[Field B] - In the Content view use formula that will return a single value result SUBSET_UNIQUECOUNT([Field C]) This formula will count total number of unique combinations of fields A and B.