Questions tagged [duplication]
180 questions
0
votes
1 answer
Microsoft Excel - How to transform a vertical list with doubled ID to an horizontal one without duplication
I have a list in excel like this:
Case ID Name
65003 value1
65003 value2
65003 value3
65003 value2
65004 value1
65004 value1
65005 value6
65006 value7
65006 value1
I want to delete duplication and to get a list like this:
Case ID…

Maher massaabi
- 51
- 6
0
votes
1 answer
Is there another way to avoid duplication of large hashable objects?
I am processing text and have the need to store large sequences of hashable objects - sometimes strings, sometimes tuples of words, etc. I've been thinking of using the hash function to provide an simple store and retrieve class but with my first…

bmacnaughton
- 4,950
- 3
- 27
- 36
0
votes
1 answer
PostgreSQL: Create Boolean field based on multiple rows from join
I am gathering many fields from one database over many tables (6). One column is causing duplication for some of the data. I want to create a boolean for that field if one or more of my parameters is true and group by the rest of the fields.
There…

Sarah Bergquist
- 375
- 2
- 6
- 10
0
votes
1 answer
PHP Collection - Code Duplication upon refresh or page change
I have created some custom code (lines 287-309 in the code below)It is a duplicate function of 313-345 but with a few changes.
Although the function works perfectly well for some reason the page upon change or refresh duplicate the collection at…

richyp147
- 17
- 5
0
votes
1 answer
Duplicating elements with Javascript and naming w/ counter
I think I've searched long enough to warrant asking this, and I hope I'm not missing something obvious, but I'm at my wits' end with this. I'm a complete JavaScript noob, and I'm having difficulty getting a script I found online to work…

nda214
- 3
- 1
0
votes
1 answer
duplicated values in a string - on submit
I have a hidden variable within a cfform. The value is an alphanumeric string, 4 characters long, like Y876. The value appears to be correctly set on the form page. On the submit page however, the string becomes a two item list, like: Y876,Y876.…

user2543530
- 1
- 1
0
votes
1 answer
Typedef Code duplication. Template types within template types
I am new to C++... So, this question might be silly...
I do have, for example, the following struct
template
struct TypesKernel {
typedef _TpIn input_type;
typedef _TpOut output_type;
};
And now I want to…

Nik Ved
- 168
- 2
- 8
0
votes
2 answers
Duplicate similar fields of the form on checked
I have a form in which I have a permanent address and correspondence address.
I want the user to enter the permanent address first and then give a checkbox stating if the correspondence address is the same as permanent address. I was able to fill…

Badrinath
- 94
- 1
- 12
0
votes
1 answer
Duplication in category text php
i want write a code in php that go to txt file in dir "file" and look to line 2 and take category and subject from line 3 for a menu in my site.
function arrayDuplicate($array)
{
return…

Em Fhal
- 152
- 12
0
votes
2 answers
mysql duplicated my rows over night
Ok I know this might sound screwed up, but mysql sometime yesturday through an unexpected curball my way, which i have never come across before.
SO we have a database table called employees
in that table you have records like
Russell
Smith
Sam
but…

RussellHarrower
- 6,470
- 21
- 102
- 204
0
votes
1 answer
Row Duplication
I am a junior developer working on a .NET web application project. In one of the pages the user compiles several text fields and then presses a 'Save' button.
The text fields on the page are mapped to the properties of an object. I have one…

Klassanov
- 3
- 2
0
votes
0 answers
WP white screen of death after duping a site that works fine on same server
I have simply duped a site that runs absolutely fine on a separate domain into a sub directory of another domain for development purposes. I have zipped the /httpdocs/ directory excluding cache and uploads directories (they are >4gb large) and…

Sergey
- 939
- 1
- 6
- 13
0
votes
1 answer
Array is duplicating the last line
The problem I am having is when I print out horizontalLine(1, 1, 3, 1) it adds the horizontalLine before it into the console. Is there any way to stop the duplication?
public class Array {
static String arrayPicture[][];
public static void main…

user1718272
- 39
- 1
- 1
- 6
0
votes
2 answers
Accessing source object from duplicated object in blender api
I use Blender 2.62.
I'd like to use blender as editor for tiled 3d world. I have models for different tiles, and I place linked duplicates of these models in another layer to construct a map.
Now I'd like to export this map in some understandable…

ajuc
- 590
- 6
- 12
0
votes
2 answers
Preventing duplicates from being stored when filling dynamic array with values from two different arrays
I need to know a method to keep duplicate numbers from being stored in a new array when taking numbers from two different arrays. The function is supposed to store each 'unique' value once and not store duplicate values again.
Here is my function…

user1775823
- 3
- 2