我有一个包含许多不同服务器名称的Excel报表,现在我想可以在VBA中编写一个宏,以创建一个以服务器名称命名的新excel文件。
例如,我的表中有一列名为“服务器名”,n行包含名称“ Server1”,m行包含名称“ Server2”
现在,我希望宏创建两个文件Server1.xlsx和Server2.xlsx,并且这两个文件都包含包含服务器名的每一行。
这可能吗?如果可以,请您帮帮我,我以前从未使用过VBA,也不知道如何开始。
答案 0 :(得分:0)
首先创建两个工作簿。您现在有三本书。原始文件(包含程序代码)被称为ThisWorkbook,其他两个被对象变量引用。然后,您开始遍历现有页面的每一行,并使用IF语句将每一行带到一个或另一个目的地。到达空白行时停止。这是一个示例(请注意,您必须自己进行扩展)
<?php
$query = "SELECT * FROM post";
$select_all_post_query = mysqli_query($connection, $query);
while($row = mysqli_fetch_assoc ($select_all_post_query)){
$post_title = $row['post_title'];
$post_author = $row['post_author'];
$post_date = $row['post_date'];
$post_image = $row['post_image'];
$post_content = $row['post_content'];
?>
<h1 class="page-header">
Page Heading
<small>Secondary Text</small>
</h1>
<!-- First Blog Post -->
<h2>
<a href="#"><?php echo $post_title ?></a>
</h2>
<p class="lead">
by <a href="index.php"><?php echo $post_author ?></a>
</p>
<p><span class="glyphicon glyphicon-time"></span> <?php echo $post_date ?></p>
<hr>
<img class="img-responsive" src="http://placehold.it/900x300" alt="">
<hr>
<p><?php echo $post_content ?></p>
<a class="btn btn-primary" href="#">Read More <span class="glyphicon glyphicon-chevron-right"></span></a>
<hr>
<?php }
?>