This tag is for questions involving values which are only one of its kind; unlike anything else.
Questions tagged [unique-values]
173 questions
-1
votes
1 answer
Extracting unique 7-digit string in a cell...Excel
In excel, I want to extract unique 7 digits in a cell with a string of digits. After the first 7 unique digits are extracted (placed in an adjacent column), the next 7 unique digits begin after the last digit of the previous unique 7-digit string.…

sweetypie
- 3
- 1
-1
votes
4 answers
How to display employee information in form2 by specifying emp id in form1?
This is my form1 which I designed. When I type emp id in form1's textbox and click on the search button it shows form2.
In this second form I need to carry all the details corresponding to emp id and should display details into corresponding…

shalini rajendran
- 1
- 1
- 6
-1
votes
2 answers
PHP: multidimensional array: delete duplicate array by key value, change key value of unique array
I have an array that has a duplicate (zxcas), but with a different value for the key [result] and [size]:
Array
(
[0] => Array
(
[file] => asda.txt
[path] => /home/user/public_html/asda.txt
[type] =>…

Bob Jansen
- 89
- 11
-2
votes
1 answer
Hi, Excel question. 10 companies with each has a multiple rows of monthly sales values. Months are common. I want to graph all on one graph. How?
Excel question. 10 companies with each has a multiple rows of monthly sales values. It depends where each company starts, there could be months in common. I would like to have all values on one single graph that will sum up the monthly sales values…

Henri
- 1
-2
votes
2 answers
How to count unique values within a row in R
I have the following panel dataset in R which contains an ID variable and shows the last login details for that ID.
id name address last_log_june1 last_log_june2 last_log_june3 last_log_june4 last_log_june"n"
1 A 2020-06-01 …

Rachita
- 37
- 7
-2
votes
3 answers
Count unique values and return results in another column
I have values in column B (green, blue, white....) and I want to count them and the result must appear in column A in the following format (green01, green02, green03...., blue01, blue02, blue03, blue04...., white01, white 02...).
The result must…

Alin
- 3
- 3
-2
votes
2 answers
Grouping values in array
I have done a lot of looking around the internet to find solution to my problem, but nothing has worked for my specific case.
I have an array of hours and active users as following:
Array (
[0] => Array (
[time] => 05:00 ,
…

powerthepower
- 1
- 2
-4
votes
1 answer
Unique objects from array based on two properties javascript
lets say we have an array of objects:
results = [
{id: 1, name: John},
{id: 2, name: Gabo},
{id: 1, name: Anna},
{id: 3, name: Gabo}
{id: 1, name: Jack}, ]
I want function which gets all this objects which has unique id and name and it's value…

tiagon
- 1