Excel获取A和A列的所有倍数; B如果为C列的类似值

时间:2017-11-16 12:03:59

标签: excel-vba excel-formula vba excel

如何添加条件,以便B列和C列的值仅根据C列的值重复。

<pre><code>

public string GetHashSha256(string  VERSION,string STAMP, string REFERENCE,string PAYMENT, string STATUS, string ALGORITHM, string password)

    {
        string text = VERSION + STAMP + REFERENCE + PAYMENT + STATUS + ALGORITHM + password;
        byte[] bytes = Encoding.ASCII.GetBytes(text);
        SHA256Managed hashstring = new SHA256Managed();
        byte[] hash = hashstring.ComputeHash(bytes);
        string hashString = string.Empty;
        foreach (byte x in hash)
        {
            hashString += String.Format("{0:x2}", x);
        }
        return hashString;
    }

我正在追踪A&amp; A列的所有倍数。 B为项目alpha。然后是A和A列的所有倍数。 B项目Beta。

Height Width Project
400    200   Alpha
500    300
700
800
1000    200   Beta
5000    900
6500    420
760
890

到目前为止,我有这个子,它给了我A和A列的所有倍数。乙

400    200   Alpha
500    200   Alpha
600    200   Alpha
700    200   Alpha
800    200   Alpha
400    300   Alpha
500    300   Alpha
600    300   Alpha
700    300   Alpha
800    300   Alpha
1000   200   Beta
5000   200   Beta
...

我需要添加一个条件,该值仅根据C列值重复。

0 个答案:

没有答案