简单的Excel IF语句不起作用。

时间:2017-10-06 00:33:30

标签: excel if-statement

我不知道为什么这不起作用。它看起来就像我在网络上发现的多个来源。我错过了什么?

代码:

=IF(A1="Select all",B1="Yep",B1="Nope")

这是结果: enter image description here

2 个答案:

答案 0 :(得分:2)

您只需将结果值放在第二个和第三个参数中:

=IF(A1="Select all","Yep","Nope")

看起来你试图将值分配给B1单元格,但实际发生的是你得到比较结果以检查B1是否等于“是”,这会导致循环引用错误,因为公式试图看自己。

答案 1 :(得分:1)

你不需要说B1 =“是的”只需要

@Override
public void onMapReady(GoogleMap googleMap) {
    mMap = googleMap;

    Double lat1 = getIntent().getExtras().getDouble("lat1");
    Double lng1 = getIntent().getExtras().getDouble("lng1");

    Double lat2 = getIntent().getExtras().getDouble("lat2");
    Double lng2 = getIntent().getExtras().getDouble("lng2");

    //Origin Marker
    LatLng origin = new LatLng(lat1, lng1);
    mMap.addMarker(new MarkerOptions()
            .position(origin)
            .title("Origin"));

    //Destination Marker
    LatLng destination = new LatLng(lat2, lng2);
    mMap.addMarker(new MarkerOptions()
            .position(destination)
            .title("Destination"));

    LatLngBounds.Builder builder = new LatLngBounds.Builder();
    builder.include(origin);
    builder.include(destination);
    LatLngBounds bounds = builder.build();
    mMap.moveCamera(CameraUpdateFactory.newLatLngBounds(bounds, 5));
}