Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
61 views

I have several merged cell ranges (unlocked) on a protected sheet that I want to spell check, respectively, based on the color index. Problem is 1) that it checks all these ranges and 2) after it is ...
Mohamad Bachrouche's user avatar
0 votes
1 answer
162 views

Problem Statement: I have a single table in Google Sheets with two date fields: Sales Order Date and Dispatch Date. I want to create a single line chart in Google Looker Studio that shows Sales Qty ...
gaurav parikh's user avatar
0 votes
1 answer
31 views

const menuFilteredProducts = getMenuWiseProduct(products); const categoryFilteredProducts = getCategoryWiseProduct(products); let mergedProducts = []; const prioritizeCategory = true; if (...
Chinthan K's user avatar
-1 votes
2 answers
76 views

I have "available" data and want to convert it into "desired". I tried to merge all objects inside array using this but its not working coz as you can see for timestamp = 10 we ...
shamikh's user avatar
  • 13
2 votes
4 answers
156 views

Context: I'm trying, in VBA / Excel, to read the content of multiple large sheets (arround ~100k rows in total) and to store it in a Variant in order to work on the data in memory. Why : I want to ...
C K's user avatar
  • 45
0 votes
2 answers
174 views

I have a spreadsheet with 31 Day level sheets and a few summary sheets being used for a daily sales report, using which I'm trying to create a legder. For this, I want columns A, B and C from each of ...
Bhuvana Jagan's user avatar
0 votes
2 answers
225 views

I have encountered interesting case during practicing writing Python algorithms on Leetcode. The task: "You are given two integer arrays nums1 and nums2, sorted in non-decreasing order, and two ...
kathe's user avatar
  • 3
0 votes
2 answers
75 views

I'm working on this challenge: https://leetcode.com/problems/merge-sorted-array/ This is my code: /** Do not return anything, modify nums1 in-place instead. */ function merge(nums1, m, nums2, n) { ...
judgejab's user avatar
  • 529
0 votes
4 answers
56 views

I have one array like below [ { "__typename": "ConfigurableProduct", "uid": "MzY3", "name": "AISLING BODYSUIT", "crosssell_products&...
Harshal Kalavadiya's user avatar
1 vote
6 answers
564 views

I have the following scenario made of arrays with numeric keys. I need to have an array which stores all the values in the arrays grouped by numeric key and without duplicates. I cannot make them ...
ilariaroglieri's user avatar
2 votes
1 answer
541 views

I want to merge multiple arrays that are in multiple sheets into a single matrix with the size of Max(Columns(arrays)) x Count(arrays). See image bellow to better understand the inputs and expected ...
tiagofranca's user avatar
0 votes
1 answer
31 views

Firstly I need to create string array that include elements came from different properties of one object. At the below code MyDatas is IEnumerable, prop1 and prop2 are string. var array = myDatas....
EsprnzJK's user avatar
0 votes
1 answer
115 views

I'm making a website that uses foreach loop for the output. The output is a bunch of arrays, but it's not quite right. I used the foreach twice because it requires 2 arrays for the output. I got the ...
Thea's user avatar
  • 3
0 votes
0 answers
963 views

I am working with satellite data which has measurements over different locations for different times. I am working with netcdf data in the form of xarray Datasets. I'd like a "union" of ...
StubBurn's user avatar
  • 126
0 votes
1 answer
3k views

The intended operation is to search column A for duplicate values (column is already sorted). Each duplicate value in A should be merged into 1 cell. Also, merge the same rows in B,C,D,E,F,G,H (take ...
Omer Daniel's user avatar
1 vote
1 answer
88 views

I'm trying to add 2 array data to each other with array_merge(). It's just attached to the back. But lower levels are ignored. Is there an alternative to array_merge() that will merge the user values ...
Cem Firat's user avatar
  • 420
-1 votes
1 answer
433 views

I have a custom post type with its own custom template, and I want to display blog posts that are related to the custom post type title. However, I want to display a referenced post first, then search ...
douglaskarr's user avatar
1 vote
5 answers
87 views

[{name:"abc",value:5},{name:"abc",value:10},{name:"abc1",value:5},{name:"abc1",value:15}] I want to merge it by name so that the new array will be [{name:"...
Rover's user avatar
  • 780
1 vote
4 answers
926 views

So How to merge values of a Json object like this: {"zz0": "value 1","zz1": "value 2","zz2": "value 3"} into this: {"key":["...
backnext's user avatar
  • 393
1 vote
0 answers
155 views

I want to do a merge operation in DBT. my target table is nested. I wrote the code in 2 steps. In the 1st stage, I bring it to the level I want in my target table. In part 2, I merge it. but since I ...
Burak İlkbahar's user avatar
0 votes
1 answer
111 views

I'm a novice at programming, let alone Google AppsScript. Hopefully this is detailed enough for you to understand my issue and help me find a solution. I am currently pulling data from an API and ...
Cody Nason's user avatar
1 vote
1 answer
97 views

I have 3 arrays. I need to add some values from array "data2" and "data3" to "array1". I wrote a code example, but in my code, I missing all indexes that do not exist in ...
Qwertycal's user avatar
0 votes
0 answers
54 views

I have three functions, live_event() - the main function, archived_video() - runs inside live_event() if conditions fail and additional_videos() which should be run in all cases and its results ...
Dirty Bird Design's user avatar
0 votes
1 answer
152 views

This are the two array that needs merging based on common id, the nested array should also be merged First Array const arr1 = [ { id: 1, name: "sai", accounts: ["a"] }, { ...
sevack's user avatar
  • 13
-1 votes
3 answers
204 views

If someone has already done it, the idea is to merge different arrays into one and also merge the values sum of price, qty only for the identical keys. In my example I only put two arrays to be merged ...
PЯINCƎ's user avatar
  • 744

1
2 3 4 5
17