我有这个代码;
我在Excel中创建图表,但在创建xValues时总会出现错误。帮我。
$this->add(array(
'type' => 'Zend\Form\Element\Captcha',
'name' => 'captcha',
'options' => array(
'label' => 'Inserisci il codice riportato sotto',
'captcha' => $this->getCaptchaImage(),
),
'attributes'=>array(
'id'=>'captcha',
'tabindex'=>9,
'class'=>'stylish-text-input span3',
'required'=>true
)
));
***部分显示错误,但我不知道原因。 我正在考虑在Excel中做图表。请帮帮我!
答案 0 :(得分:0)
Sheets(ComboBox6.Text).Range(Cells(i + 1, ma), Cells(1 + i, ho))
.Range
来电符合特定Sheet
。
使用Cells
来电不是;他们隐含地引用ActiveSheet
- 如果相同的工作表.Range
不合格,则可能会发生错误。< / p>
With
阻止对您的工作表进行引用,并使用点符合您的Range
和Cells
来电:With Worksheets(comboBox6.Text)
ActiveChart.SeriesCollection(numero).Values = _
.Range(.Cells(i + 1, ma), .Cells(i + 1, ho))
End With