从连接范围填充列

时间:2016-01-29 02:46:02

标签: excel vba excel-vba

我到目前为止的内容如下。

Range("F4").Value = Range("D4").Value & " x " & Range("E4")

这是为我创建列 F 中的连接。这对于单个单元格工作正常,但我希望这继续连续,直到它碰到一个空单元格。

我试过循环但没有成功。

below is an image of the sheet

2 个答案:

答案 0 :(得分:0)

struct entry
{
  string date;
  string time;
  double high;
  double low;
  double close;
  double open;
  int volume;
};

这应该这样做。如果您还有问题,请告诉我。

答案 1 :(得分:0)

试试这个......

 i=4
 Do while(Range("D" & i).Value<> "")
     Range("F" & i).Value = Range("D" & i).Value & " x " & Range("E" & i)

 Loop