如何將日期後的第一個值從一個選項卡拉到谷歌表格中的另一個選項卡中? (How to pull the first value after a date from one tab into another in google sheets?)


問題描述

如何將日期後的第一個值從一個選項卡拉到谷歌表格中的另一個選項卡中? (How to pull the first value after a date from one tab into another in google sheets?)

我在谷歌表格中有一個標籤,其中包含每週股票價格數據(列是日期和價格)。我有另一個帶有一些信號(日期和多頭入場價格)的標籤。

我想在第一張表(多頭入場)中添加一列,將信號標籤中的第一個多頭入場價格拉入在信號日期和收盤日期之後(和之間)的行。

例如,在價格中,我有:

date       | price
2006‑01‑01 | 30.00
2006‑01‑07 | 31.00
2006‑01‑14 | 32.00
2006‑01‑21 | 33.00
2006‑01‑28 | 34.00

在信號中,我有:

date       | entry_price
2006‑01‑03 | 33.30
2006‑01‑12 | 32.10

我想要:

date       | price | entry_price
2006‑01‑01 | 30.00 | 
2006‑01‑07 | 31.00 | 33.30
2006‑01‑14 | 32.00 | 32.10
2006‑01‑21 | 33.00 | 32.10
2006‑01‑28 | 34.00 | 32.10

看看它在 2006 年 1 月 1 日如何沒有入場價格?那是因為1/3之前沒有信號。看看 1/12 信號的入場價格如何用於 1/14、1/21/ 和 1/28?那是因為那是最後一個信號之後的第一個日期。

這是一個 0

(by Brett Elliotplayer0)

參考文件

  1. How to pull the first value after a date from one tab into another in google sheets? (CC BY‑SA 2.5/3.0/4.0)

#google-sheets #google-sheets-formula #array-formulas #gs-vlookup #arrays






相關問題

通過 JavaScript 客戶端 API Auth 使用 Google 電子表格作為“已驗證”數據源的 Google 可視化 API (Google Visualization API using Google Spreadsheet as "Authenticated" Data Source via JavaScript Client API Auth)

根據另一個單元格的值更改單元格的背景 (Changing background of a cell based on the value of another)

如何從 Google 表格中的字符串中刪除一組數字 (how to remove a set of digits from string in Google Sheets)

如何將 3 個不同的工作表與 Query(importrange) 結合起來? (How to combine 3 different sheets with Query(importrange)?)

如何在 Google 表格中使用 ArrayFormula 計算總數和唯一性(基於 2 個單獨的列)? (How to count totals and uniques (based on 2 separate columns) using ArrayFormula in Google Sheets?)

如何根據查看文檔的 Google 帳戶對 Google 表格中的列進行編程,使其從用戶輸入中灰顯 (How to program a column in Google sheets to be grayed out from user input depending on the Google account viewing the document)

單擊單元格時的谷歌應用程序腳本分配功能 (google application script assign function when cell is clicked)

如何將日期後的第一個值從一個選項卡拉到谷歌表格中的另一個選項卡中? (How to pull the first value after a date from one tab into another in google sheets?)

一次在多行上的 OnEdit 時間戳 (OnEdit timestamp on several rows at one time)

Google Sheets Script,如何創建工作表標籤的新鬆散對象 (Google Sheets Script, how to create a NEW loose object of a sheet tab)

Google Apps 腳本:將格式規則應用於特定工作表 (Google Apps Script: Apply formatting rule to a spesific sheet)

找到更接近的值並複制它 (Finding a closer value and copying it)







留言討論