使用另一个单元格中的公式将值插入excel中的单元格

时间:2017-03-31 05:35:28

标签: excel excel-formula

我需要使用另一个单元格中的公式将值插入excel中的单元格。

A1 = "Test"
B1 = formula to insert A1 to C1
C1 = A1

我可以在B1中编写公式,以便在C1中插入值吗? 我不需要C1中的任何公式。 如果是,那公式应该是什么?

2 个答案:

答案 0 :(得分:0)

如果不在C列中使用VBA或公式,则无法实现此目的。

使用公式的简单解决方案:

在单元格private StorageReference pathRef = FirebaseStorage.getInstance().getReference().child("images/egg.jpg"); private ImageView imageView; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); this.imageView = (ImageView) this.findViewById(R.id.imageView); } public void getImage(View v){ File localFile; try { localFile = File.createTempFile("images","jpg"); pathRef.getFile(localFile).addOnSuccessListener(new OnSuccessListener<FileDownloadTask.TaskSnapshot>() { @Override public void onSuccess(FileDownloadTask.TaskSnapshot taskSnapshot) { //Local temp file has been created Toast.makeText(MainActivity.this, "Success", Toast.LENGTH_SHORT).show(); } }).addOnFailureListener(new OnFailureListener() { @Override public void onFailure(@NonNull Exception e) { //handle error Toast.makeText(MainActivity.this, e.getMessage()+"\n"+e.getCause(), Toast.LENGTH_LONG).show(); } }); }catch (IOException exception){ Toast.makeText(this, "IOEXCEPTION", Toast.LENGTH_SHORT).show(); } } 中,粘贴以下公式并将其向下拖动:

<uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>

enter image description here

所以C1单元格=IF(B1=1;A1;"") 的内容,if处的单元格会在B1 is equal to 1显示column C的相应值。

答案 1 :(得分:0)

如果它在单元格旁边并且在B2中没有值,则有可能,否则就没有。

使用Split()

Split(CONCATENATE("USELESS STUFF HERE#Sperator$$",A1),"#Sperator$$",FALSE)

这真的取决于。